Files
quibot/mcp/package.json
BinarySandia04 23235e8249
Some checks failed
Build / build-web (push) Failing after 15s
Build / build-backend (push) Successful in 10s
Build / release (push) Has been skipped
Build APK / build (push) Successful in 8m28s
Build APK / release (push) Successful in 3s
Test
2026-06-19 11:06:11 +02:00

27 lines
604 B
JSON

{
"name": "quibot-mcp",
"version": "1.0.0",
"description": "QuiBot MCP server — exposes robot controls as MCP tools and resources",
"type": "module",
"bin": {
"quibot-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"axios": "^1.7.0",
"form-data": "^4.0.0",
"zod": "^3.25"
},
"devDependencies": {
"@types/node": "^22.19.21",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}