- Add FUTURE_DEVELOPMENT.md with comprehensive v2 protocol specification - Add MCP integration design and implementation foundation - Add infrastructure and deployment configurations - Update system architecture for v2 evolution 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@bzzz/mcp-server",
|
|
"version": "1.0.0",
|
|
"description": "Model Context Protocol server for BZZZ v2 GPT-4 agent integration",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node src/index.ts",
|
|
"test": "jest",
|
|
"lint": "eslint src/**/*.ts",
|
|
"format": "prettier --write src/**/*.ts"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"bzzz",
|
|
"gpt-4",
|
|
"p2p",
|
|
"distributed",
|
|
"ai-agents"
|
|
],
|
|
"author": "BZZZ Development Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
"@types/node": "^20.0.0",
|
|
"axios": "^1.6.0",
|
|
"express": "^4.18.0",
|
|
"openai": "^4.28.0",
|
|
"ws": "^8.16.0",
|
|
"zod": "^3.22.0",
|
|
"winston": "^3.11.0",
|
|
"crypto": "^1.0.1",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.0",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/ws": "^8.5.0",
|
|
"@types/uuid": "^9.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.56.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.1.0",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-node": "^10.9.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
} |