UNPKG

@agentauth/mcp

Version:

A universal proxy for remote MCP server connections, with and without authentication.

61 lines 1.44 kB
{ "name": "@agentauth/mcp", "version": "0.1.2", "description": "A universal proxy for remote MCP server connections, with and without authentication.", "main": "dist/proxy.js", "types": "dist/proxy.d.ts", "bin": { "agentauth-mcp": "dist/proxy.js" }, "scripts": { "build": "tsc && node -e \"const fs = require('fs'); const path = './dist/proxy.js'; if (process.platform !== 'win32') { fs.chmodSync(path, '755'); }\"", "dev": "tsc -w", "test": "vitest run" }, "keywords": [ "agentauth", "authentication", "identity", "mcp", "mcp-clients", "mcp-servers", "proxy", "cli", "command-line", "terminal", "connector", "ai-agents", "model-context-protocol" ], "author": "AgentAuth Team", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/agentcorelabs/agentauth.git", "directory": "packages/agentauth-mcp" }, "homepage": "https://github.com/agentcorelabs/agentauth#readme", "bugs": { "url": "https://github.com/agentcorelabs/agentauth/issues" }, "files": [ "dist", "README.md", "LICENSE" ], "type": "module", "dependencies": { "@agentauth/core": "0.1.1", "@modelcontextprotocol/sdk": "^1.12.3", "yargs": "^18.0.0" }, "devDependencies": { "@types/yargs": "^17.0.33" }, "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" } }