Initial commit: Complete Hive distributed AI orchestration platform

This comprehensive implementation includes:
- FastAPI backend with MCP server integration
- React/TypeScript frontend with Vite
- PostgreSQL database with Redis caching
- Grafana/Prometheus monitoring stack
- Docker Compose orchestration
- Full MCP protocol support for Claude Code integration

Features:
- Agent discovery and management across network
- Visual workflow editor and execution engine
- Real-time task coordination and monitoring
- Multi-model support with specialized agents
- Distributed development task allocation

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-07-07 21:44:31 +10:00
commit d7ad321176
2631 changed files with 870175 additions and 0 deletions

28
mcp-server/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "hive-mcp-server",
"version": "1.0.0",
"description": "MCP Server for Hive Distributed AI Orchestration Platform",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"watch": "tsc -w"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.3",
"axios": "^1.6.0",
"ws": "^8.18.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}