forked from supercorp-ai/superargs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 884 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 884 Bytes
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
{
"name": "superargs",
"version": "1.0.3",
"description": "Update MCP server args during MCP server runtime.",
"repository": {
"type": "git",
"url": "git+https://github.com/supercorp-ai/superargs.git"
},
"keywords": [
"mcp",
"server",
"stdio",
"sse",
"env",
"arguments",
"arg",
"args",
"runtime"
],
"type": "module",
"bin": {
"superargs": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.16",
"@types/node": "^20.5.9",
"@types/yargs": "^17.0.33",
"ts-node": "^10.9.1",
"tsx": "^3.12.7",
"typescript": "^5.2.2"
}
}