Orbit-MCP
Allows managing CI/CD pipelines on Buildkite.
Integrates with CircleCI for continuous integration and deployment pipelines.
Enables interaction with Datadog for monitoring and analytics.
Leverages Docker containers for running MCP gateway infrastructure.
Enables interaction with GitHub repositories, issues, pull requests, and code management via OAuth-authenticated tools.
Provides OAuth-based access to Google Drive for file management and collaboration.
Connects to Grafana for monitoring dashboards and observability data.
Integrates with Jira for issue tracking and project management tasks.
Enables management of Kubernetes clusters and resources.
Supports creating pages and managing Notion documentation through the gateway.
Provides tools for error tracking and performance monitoring via Sentry.
Allows sending messages and managing Slack channels, integrated with team communication workflows.
Supports infrastructure as code operations with Terraform.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Orbit-MCPEnable GitHub server and start gateway"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π°οΈ 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.
Related MCP server: MCP Gateway
β‘ 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-serverConfigure 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-serverThis 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 β
Server discovery and management
OAuth-first authentication
Dynamic tool aggregation
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!
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Wirasm/orbit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server