package.json•1.06 kB
{
"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') && require('fs').chmodSync('build/http-server.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start:http": "node build/http-server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"dotenv": "^16.4.7",
"axios": "^1.7.9",
"express": "^4.18.2"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"typescript": "^5.7.2"
}
}