-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "mcp-proxy-server",
"version": "0.4.1",
"author": "ptbsare",
"license": "MIT",
"description": "An MCP proxy server that aggregates and serves multiple MCP resource servers through a single interface with stdio/sse support",
"private": true,
"type": "module",
"bin": {
"mcp-proxy-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"dev": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'tsx src/index.ts'",
"dev:sse": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'tsx src/sse.ts'",
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.0",
"@types/cors": "^2.8.17",
"@types/express-session": "^1.18.1",
"cors": "^2.8.5",
"eventsource": "^4.0.0",
"express": "^4.21.1",
"express-session": "^1.18.1",
"node-pty": "^1.0.0",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^20.11.24",
"nodemon": "^3.1.9",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
}
}