package.jsonβ’744 B
{
"name": "tmb-bus-mcp",
"version": "1.0.0",
"description": "MCP Server for TMB Barcelona bus arrival times",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"server": "npm run build && node dist/server.js",
"host": "npm run build && node dist/host.js",
"client": "npm run build && node dist/client.js",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"tmb",
"barcelona",
"bus",
"transport"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}