MyVpsSuper
Verified Safeby fernandes01032000
Overview
An AI orchestration platform for managing intelligent agents, their interactions with various microservices (MCP Servers), and monitoring via a web dashboard.
Installation
docker compose up -d && cd dashboard && python -m uvicorn backend.main:app --host 0.0.0.0 --port 8000Environment Variables
- ANTHROPIC_API_KEY
- MP_ACCESS_TOKEN
- EVOLUTION_API_URL
- EVOLUTION_API_KEY
- EVOLUTION_INSTANCE
- N8N_URL
- N8N_API_KEY
- SUPABASE_URL
- SUPABASE_KEY
Security Notes
The project generally follows good practices by using environment variables for sensitive credentials. However, `docker-compose.yml` and Python MCPs provide hardcoded default passwords/tokens (e.g., 'orchestrator_secret_2024', 'puppeteer_token_2024') for local containers. While these can be overridden, relying on such defaults, even for local development, poses a minor risk. The FastAPI backend listens on `0.0.0.0`, meaning it's accessible from all network interfaces, requiring careful firewall configuration if exposed to the internet. `subprocess.run` calls are used for internal scripts or fixed commands, mitigating command injection risks. SQL queries appear to use parameterized statements, which helps prevent SQL injection.
Similar Servers
claude-flow
Orchestrates AI agents (Claude) for development workflows, including code generation, testing, analysis, research, and project migration, with MLOps capabilities.
zen-mcp-server
A server for coordinating and managing AI agents, likely for simulations or complex task execution, leveraging Claude LLMs.
cldcde
A Model Context Protocol (MCP) server designed to scrape, store, search, and analyze AI conversations from various platforms (ChatGPT, Grok, Gemini, Claude), providing actionable insights and context.
multi_mcp
Multi-model AI orchestration server for automated code review and LLM-powered analysis, integrating with Claude Code CLI.