package.json•872 B
{
"name": "bytebot-mcp-server",
"version": "1.0.0",
"description": "Production-grade MCP server for ByteBot Agent API and Desktop API integration with hybrid workflow orchestration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"type-check": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"bytebot",
"model-context-protocol",
"automation",
"desktop-control"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^20.17.10",
"@types/ws": "^8.5.13",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
}
}