-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 957 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 957 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
{
"name": "mcp-server-node",
"version": "1.0.0",
"description": "MCP Server with Express and TypeScript",
"main": "dist/mcp-server.js",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/mcp-server.js",
"dev": "tsx watch src/mcp-server.ts",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"test": "node test/test-streamable-http.js",
"test:mcp": "node test/test-docker-mcp.js",
"test:auth": "node test/test-auth.js",
"test:client": "node test/test-client.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"cors": "^2.8.5",
"dedent": "^1.7.0",
"express": "^5.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.0.0",
"node-fetch": "^3.3.2",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}