Orbit-MCP
A meta-orchestrator for AI toolchains, enabling discovery, authentication, and unified access to 147+ MCP servers through a central gateway.
README
π°οΈ Orbit-MCP: Meta-MCP Server for AI Toolchain Orchestration
"We build and maintain your AI-integrated developer toolchain, so your team can focus on shipping."
π Vision
Orbit-MCP is a meta-orchestrator that acts as a central control plane for managing all your AI-accessible developer tools. Instead of every team setting up and maintaining individual MCP servers, Orbit-MCP handles deployment, security, OAuth, permissions, and versioning through a unified interface.
As AI agents become first-class developers, they need secure, structured access to tools your team already uses. Orbit-MCP makes it plug-and-play: a unified, secure, and observable layer between your company's infrastructure and any AI coding assistant.
β‘ Key Features
- π Server Discovery: Browse 147+ available MCP servers from Docker's catalog
- π OAuth-First Authentication: Seamless OAuth flows for GitHub, Google Drive, and more
- β‘ Dynamic Tool Aggregation: Enable servers and instantly access their tools
- πͺ Gateway Management: Full lifecycle management of Docker MCP Gateway
- π₯ Permission Control: Team-based access control (coming soon)
- π Audit Logging: Track tool usage and access patterns (coming soon)
π οΈ Available Tools
Core Management Tools (9 tools)
hello_orbit()- Test connectivity and show system statuslist_available_servers()- Browse 147+ available MCP serversenable_server(server_name)- Enable specific servers with OAuth checkinglist_enabled_servers()- Show currently enabled servers
OAuth Authentication (4 tools)
list_oauth_providers()- Show available OAuth providers (GitHub, Google Drive)authorize_oauth(provider)- Start OAuth flow (opens browser)revoke_oauth(provider)- Revoke OAuth accesscheck_server_auth(server_name)- Check authentication requirements
Gateway & Tool Execution (5 tools)
start_gateway()- Start Docker MCP Gateway on port 3001stop_gateway()- Stop the gatewaygateway_status()- Check gateway statusdiscover_gateway_tools()- List tools from enabled serverscall_gateway_tool(tool_name, args)- Execute tools through gateway
Legacy Tools
list_enabled_tools()- Show available tools (with helpful gateway guidance)
π Demo Workflow
Scenario 1: GitHub Integration
# 1. Check available servers
list_available_servers()
# β
Shows 147+ servers including GitHub
# 2. Try to enable GitHub
enable_server("github")
# β οΈ "Authentication required. Use authorize_oauth('github')"
# 3. Complete OAuth flow
authorize_oauth("github")
# π Opens browser for GitHub OAuth consent
# 4. Enable GitHub server
enable_server("github")
# β
"Successfully enabled github (OAuth authenticated)"
# 5. Start gateway and discover tools
start_gateway()
# β
"Gateway started on port 3001"
discover_gateway_tools()
# π Lists: create_issue, search_repositories, create_pull_request, etc.
# 6. Use GitHub tools directly!
call_gateway_tool("create_issue", {
"title": "Demo Issue",
"body": "Created via Orbit-MCP meta-orchestrator!",
"repository": "username/repo"
})
# β
Creates actual GitHub issue! π
Scenario 2: Multi-Service Workflow
# Enable multiple services
enable_server("github") # Code repositories
enable_server("slack") # Team communication
enable_server("notion") # Documentation
# Start gateway
start_gateway()
# Discover all available tools
discover_gateway_tools()
# π Shows tools from GitHub, Slack, Notion all in one place
# Use tools from different services seamlessly
call_gateway_tool("create_issue", {...}) # GitHub
call_gateway_tool("send_message", {...}) # Slack
call_gateway_tool("create_page", {...}) # Notion
ποΈ Architecture
graph TD
A[AI Agent/Cline] --> B[Orbit-MCP Server]
B --> C[Docker MCP Gateway]
C --> D[GitHub MCP]
C --> E[Slack MCP]
C --> F[Notion MCP]
C --> G[147+ Other Servers]
B --> H[OAuth Management]
B --> I[Server Registry]
B --> J[Tool Discovery]
H --> K[GitHub OAuth]
H --> L[Google OAuth]
H --> M[Other Providers]
π¦ Installation & Setup
Prerequisites
- Docker Desktop with MCP plugin
- Python 3.12+
- uv package manager
Quick Start
# Clone the repository
git clone https://github.com/Wirasm/orbit-mcp.git
cd orbit-mcp
# Install dependencies
uv sync
# Run the MCP server
uv run orbit-mcp-server
Configure with Claude Code
Add Orbit-MCP to your Claude Code instance:
# From any directory, run:
claude mcp add orbit-mcp /path/to/orbit-mcp/.venv/bin/orbit-mcp-server
# For example:
claude mcp add orbit-mcp /Users/rasmus/Projects/cline-hack/orbit-mcp/.venv/bin/orbit-mcp-server
This will add Orbit-MCP to your current Claude Code project. The server will appear in the MCP servers list and connect automatically.
Configure with Cline
Add to your project's .mcp.json file (in the project root):
{
"mcpServers": {
"orbit-mcp": {
"command": "/path/to/orbit-mcp/.venv/bin/orbit-mcp-server"
}
}
}
Or with uv:
{
"mcpServers": {
"orbit-mcp": {
"command": "uv",
"args": [
"run",
"orbit-mcp-server"
],
"cwd": "/path/to/orbit-mcp",
"env": {
"PATH": "/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin"
}
}
}
}
π― Use Cases
For Development Teams
- Unified Toolchain: One interface to access GitHub, Jira, Slack, AWS, etc.
- OAuth Management: Centralized authentication for all services
- Permission Control: Team-based access to different tool sets
- Audit Trail: Track which AI agents used which tools when
For Individual Developers
- Tool Discovery: Browse and enable from 147+ available MCP servers
- Quick Setup: OAuth flows handle authentication automatically
- Multi-Service Workflows: Use tools from different services seamlessly
For DevOps Teams
- Infrastructure as Code: Enable AWS, Terraform, Kubernetes tools
- Monitoring Integration: Connect to Grafana, DataDog, Sentry
- Deployment Pipelines: Integrate with CI/CD tools like CircleCI, Buildkite
πΊοΈ Future Roadmap
Phase 1: Core Platform β
- [x] Server discovery and management
- [x] OAuth-first authentication
- [x] Dynamic tool aggregation
- [x] Gateway lifecycle management
Phase 2: Enterprise Features (Next 2 weeks)
- [ ] Pack system (frontend-stack, backend-stack, devops-stack)
- [ ] Team permissions and role-based access
- [ ] Audit logging and usage analytics
- [ ] Web dashboard for visual management
Phase 3: Advanced Orchestration
- [ ] Workflow automation and chaining
- [ ] Tool recommendation engine
- [ ] Custom server integration
- [ ] Enterprise SSO integration
Phase 4: SaaS Platform
- [ ] Hosted service option
- [ ] Multi-tenant architecture
- [ ] Billing and usage monitoring
- [ ] Marketplace for custom tools
π Competitive Advantages
- Meta-Orchestrator Approach: Manage the managers, not individual tools
- OAuth-First: Professional authentication vs. hardcoded API keys
- Docker MCP Integration: Leverages existing container ecosystem
- 147+ Servers Available: Massive catalog of pre-built integrations
- Single Configuration: One MCP server to manage them all
π€ Contributing
This is a hackathon project, but we welcome contributions! Key areas:
- Server Integrations: Add support for new MCP servers
- Authentication: Expand OAuth provider support
- UI/UX: Web dashboard and visualization
- Documentation: Usage examples and tutorials
π License
MIT License - see LICENSE file for details.
π Acknowledgments
- Docker MCP team for the incredible gateway infrastructure
- FastMCP for the Python MCP server framework
- Anthropic for MCP specification and Cline integration
- The broader MCP community for server ecosystem
Ready to orchestrate your AI toolchain? π
Get started with uv run orbit-mcp-server and experience the future of AI-integrated development!
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.