Files
chat/mcp_servers.hanzo.json
Hanzo Dev ddb7b750ac feat: integrate Hanzo Runtime API for AI code execution
- Add Runtime service to Docker Compose stack
- Configure Runtime API integration in Router config
- Add mock Runtime server for development
- Update Router with Runtime API environment variables
- Update Makefile to include Runtime health checks
- Configure runtime execution models (Python/TypeScript)
- Fix Hanzo Router branding (build with enterprise colors)
- Add runtime access points to documentation
2025-07-15 01:27:32 -05:00

26 lines
935 B
JSON

{
"hanzo-mcp": {
"command": ["python", "-m", "hanzo_mcp_server"],
"args": [],
"description": "Hanzo MCP server with file operations, search, code analysis, and agent delegation"
},
"hanzo-operative": {
"command": ["python", "-m", "hanzo_operative"],
"args": ["--headless"],
"description": "Hanzo Operative for browser automation and computer control"
},
"hanzo-agent": {
"command": ["python", "-m", "hanzo_agent_mcp"],
"args": [],
"description": "Hanzo Agent SDK for multi-agent workflows"
},
"zapier": {
"sse_url": "https://mcp.zapier.com/api/mcp",
"description": "Zapier integration for workflow automation"
},
"deepwiki": {
"http_url": "https://mcp.deepwiki.com/mcp",
"sse_url": "https://mcp.deepwiki.com/sse",
"description": "DeepWiki for repository documentation and search"
}
}