-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "mcp-server-examples",
"description": "An MCP server example that demonstrates how to use the Model Context Protocol (MCP) SDK to create a server that can handle requests and responses in a structured way.",
"author": "Suresh Konakanchi",
"version": "1.0.0",
"private": true,
"main": "src/index.js",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "npx tsc --project tsconfig.json",
"debug": "npm run build && npx @modelcontextprotocol/inspector node dist/index.js",
"start": "node dist/index.js",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.2",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"fs-extra": "^11.3.0",
"ignore": "^7.0.4",
"node-fetch": "^3.3.2",
"path": "^0.12.7",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"ts-jest": "^29.3.2"
}
}