package.json•1.39 kB
{
"name": "nyc-subway-mcp",
"version": "1.0.0",
"description": "MCP server for NYC subway real-time information using MTA GTFS feeds",
"main": "./src/index.ts",
"module": "./src/index.ts",
"type": "module",
"scripts": {
"start": "npx @smithery/cli dev",
"dev": "npx @smithery/cli dev",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo 'Use npm run dev for Smithery development'"
},
"keywords": [
"mcp",
"model-context-protocol",
"nyc",
"subway",
"mta",
"gtfs",
"realtime",
"transit"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sasabasara/where_is_my_train_mcp.git"
},
"homepage": "https://github.com/sasabasara/where_is_my_train_mcp#readme",
"bugs": {
"url": "https://github.com/sasabasara/where_is_my_train_mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"node-fetch": "^3.3.2",
"node-stream-zip": "^1.15.0",
"protobufjs": "^7.5.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.17.2",
"tsx": "^4.20.4",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"mcp": {
"server": {
"name": "nyc-subway",
"description": "Get real-time NYC subway information for NQRW lines",
"version": "1.0.0"
}
}
}