UNPKG

mcp-proxy

Version:

A TypeScript SSE proxy for MCP servers that use stdio transport.

73 lines (72 loc) 1.66 kB
{ "name": "mcp-proxy", "version": "2.12.0", "main": "dist/index.js", "scripts": { "build": "tsup", "test": "vitest run && tsc", "format": "prettier --write . && eslint --fix ." }, "bin": { "mcp-proxy": "dist/bin/mcp-proxy.js" }, "keywords": [ "MCP", "SSE", "proxy" ], "type": "module", "author": "Frank Fiegel <frank@glama.ai>", "license": "MIT", "description": "A TypeScript SSE proxy for MCP servers that use stdio transport.", "module": "dist/index.js", "types": "dist/index.d.ts", "dependencies": { "@modelcontextprotocol/sdk": "^1.6.0", "eventsource": "^3.0.5", "yargs": "^17.7.2" }, "repository": { "url": "https://github.com/punkpeye/mcp-proxy" }, "homepage": "https://glama.ai/mcp", "release": { "branches": [ "main" ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/npm", "@semantic-release/github" ] }, "devDependencies": { "@sebbo2002/semantic-release-jsr": "^2.0.4", "@tsconfig/node22": "^22.0.0", "@types/node": "^22.13.5", "@types/yargs": "^17.0.33", "eslint": "^9.21.0", "eslint-plugin-perfectionist": "^4.9.0", "get-port-please": "^3.1.2", "prettier": "^3.5.2", "semantic-release": "^24.2.3", "tsup": "^8.3.6", "tsx": "^4.19.3", "typescript": "^5.7.3", "vitest": "^3.0.6" }, "tsup": { "entry": [ "src/index.ts", "src/bin/mcp-proxy.ts" ], "format": [ "esm" ], "dts": true, "splitting": true, "sourcemap": true, "clean": true } }