{ "name": "@mcp-rating/gateway", "version": "0.2.3", "mcpName": "io.mcprating/gateway", "description": "Run MCP servers without handing them your API keys — sandboxed execution plus on-demand discovery from a public MCP registry.", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "mcp-gateway": "./dist/index.js" }, "files": [ "dist", "README.md" ], "homepage": "https://mcprating.io/gateway", "repository": { "type": "git", "url": "git+https://github.com/mcprating/mcp-gateway.git" }, "bugs": { "url": "https://github.com/mcprating/mcp-gateway/issues" }, "publishConfig": { "access": "public", "provenance": true }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./server": { "types": "./dist/gateway-server.d.ts", "import": "./dist/gateway-server.js" } }, "scripts": { "build": "tsc", "dev": "tsx watch src/index.ts", "start": "node dist/index.js", "start:daemon": "node dist/index.js", "typecheck": "tsc --noEmit", "test:e2e": "node --import tsx test-e2e.mjs", "prepublishOnly": "npm run build", "test": "vitest run" }, "keywords": [ "mcp", "model-context-protocol", "gateway", "proxy", "mcp-server", "mcp-rating", "ai", "tools" ], "license": "MIT", "author": "saikousoshite-ai ", "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.26.0", "eventsource": "^4.1.0", "ws": "^8.19.0", "zod": "^4.3.6" }, "devDependencies": { "@types/node": "^25.2.3", "@types/ws": "^8.18.1", "tsx": "^4.21.0", "typescript": "^5.9.3", "vitest": "^4.0.18" } }