Files
tlbm-mcp/package.json
T
wangjunandClaude Opus 4.6 29f34fddf3 feat: TLBM MCP Server 初始版本
- 提供无人车运营 API 的 MCP 封装
- 支持车辆状态查询、轨迹回放、订单管理等功能
- 一键安装脚本支持快速部署

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-12 14:32:50 +08:00

24 lines
547 B
JSON

{
"name": "tlbm-mcp",
"version": "1.0.0",
"description": "TLBM 无人车运营 API MCP Server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tlbm-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": ["mcp", "vehicle", "delivery", "autonomous"],
"author": "AtomDancing",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}