forked from Kreijstal/mcp-sse-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@yulin0629/mcp-superassistant-proxy",
"version": "0.0.19",
"description": "Enhanced fork of @srbhptl39/mcp-superassistant-proxy with improved memory management and session limits",
"keywords": [
"mcp",
"stdio",
"sse",
"gateway",
"proxy",
"bridge"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/yulin0629/mcp-sse-proxy.git"
},
"homepage": "https://github.com/yulin0629/mcp-sse-proxy",
"bugs": {
"url": "https://github.com/yulin0629/mcp-sse-proxy/issues"
},
"author": "yulin0629",
"bin": {
"mcp-superassistant-proxy": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.15.19",
"@types/yargs": "^17.0.33",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}