-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 966 Bytes
/
package.json
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
{
"name": "ns-mcp-server",
"version": "0.1.6",
"description": "Transform your AI assistant into a Dutch railways expert! This MCP server connects Claude to real-time NS (Nederlandse Spoorwegen) travel information, making it your perfect companion for navigating the Netherlands by train.",
"private": false,
"type": "module",
"bin": {
"ns-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"dotenv": "^16.4.7",
"axios": "^1.7.9",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^20.11.24",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"typescript": "^5.7.2"
}
}