-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "mcp-play",
"version": "1.0.0",
"description": "A simple Node.js application to play with the Model Context Protocol.",
"main": "src/server.ts",
"type": "module",
"scripts": {
"build": "npm-run-all -s create:docs build:server",
"build:server": "tsc -p ./tsconfig.build.json",
"build:server:watch": "tsc -p ./tsconfig.build.json --watch",
"create:docs": "tsx ./assets/scripts/create-docs.ts",
"server:dev": "tsx src/server.ts",
"server:inspect": "export DANGEROUSLY_OMIT_AUTH=true && npx @modelcontextprotocol/inspector npm run server:dev"
},
"author": "Gcore",
"license": "Apache-2.0",
"dependencies": {
"@gcoredev/fastedge-sdk-js": "^2.1.0",
"@modelcontextprotocol/sdk": "^1.17.1",
"dedent": "^1.7.0",
"qs": "^6.14.0",
"toml": "^3.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.17.2",
"@types/node": "^24.2.0",
"@types/qs": "^6.14.0",
"esbuild": "^0.25.11",
"npm-run-all": "^4.1.5",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}