-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 710 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 710 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
{
"name": "mcp-getting-started",
"version": "1.0.0",
"description": "Get started with creating a MCP Server",
"keywords": [
"mcp",
"ai",
"agent"
],
"license": "MIT",
"author": "Rickard Hole Falck",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js ",
"dev": "concurrently \"tsc --watch\" \"node --env-file-if-exists=.env --watch dist/index.js\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"express": "^5.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.5.2",
"concurrently": "^9.2.1",
"typescript": "^5.9.2"
}
}