This is a multi-service orchestration hub that treats other MCP servers as callable tools. It connects to GoHighLevel's CRM (via their official MCP server using Private Integration Tokens), plus planned integrations for Stripe, Shopify, Supabase, Vercel, and Slack. You get 80+ tools spanning contact management, SMS/email sends, opportunity tracking, AI content generation, course creation, and workflow deployment. The standout feature is cross-service workflow chaining: trigger a Shopify order, create a GHL contact, send a Slack notification, all through natural language commands. You'll need an API key from rocketadd.com to authenticate. Reach for this when you want a single MCP interface to orchestrate actions across multiple platforms instead of configuring each service's MCP server individually.
Multi-MCP Orchestration Hub - Connect GHL, Stripe, Shopify, Supabase, and more through a single AI interface.
Multi-MCP Orchestration - Rocket+ now acts as a central hub that can call other MCP servers:
Talk to your CRM and orchestrate multi-service workflows:
rp_)Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on Mac):
{
"mcpServers": {
"rocket-plus": {
"command": "npx",
"args": ["-y", "rocket-plus-mcp"],
"env": {
"ROCKET_API_KEY": "rp_your_key_here"
}
}
}
}
Claude Code (.mcp.json in your project):
{
"mcpServers": {
"rocket-plus": {
"type": "stdio",
"command": "npx",
"args": ["-y", "rocket-plus-mcp"],
"env": {
"ROCKET_API_KEY": "rp_your_key_here"
}
}
}
}
The Rocket+ tools will now be available!
Rocket+ can connect to GoHighLevel's official MCP server, giving you access to all native GHL tools through Rocket+.
Create a Private Integration Token (PIT) in GHL:
pit-)Connect via Rocket+ MCP:
"Connect my GHL MCP with pit-abc123..."
Or use the tool directly:
{
"tool": "connect_ghl_mcp",
"args": {
"pit": "pit-your-token-here",
"ghlLocationId": "optional-location-id"
}
}
Once connected, you can call any GHL MCP tool:
"Call GHL MCP to get all contacts"
"Use ghl-mcp to send an SMS to John"
Or via mcp_call_server:
{
"tool": "mcp_call_server",
"args": {
"serverId": "ghl-mcp",
"tool": "get_contacts",
"serverArgs": { "limit": 10 }
}
}
Rocket+ acts as a central hub that can route calls to multiple MCP servers:
┌─────────────────────────────────────────────────────────────┐
│ YOUR AI ASSISTANT │
│ (Claude Desktop/Code) │
└──────────────────────────┬──────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ ROCKET+ MCP (Hub) │
│ │
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
│ │ GHL MCP │ │ Stripe │ │ Shopify │ │ Supabase │ │
│ │ (CRM) │ │ (Pay) │ │ (Shop) │ │ (DB) │ │
│ └──────────┘ └──────────┘ └──────────┘ └──────────┘ │
│ │
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
│ │ Vercel │ │ Slack │ │ MCPFED │ │
│ │ (Deploy) │ │ (Notify) │ │ (More) │ │
│ └──────────┘ └──────────┘ └──────────┘ │
└─────────────────────────────────────────────────────────────┘
| Server ID | Name | Status | Description |
|---|---|---|---|
rocket-plus | Rocket+ MCP | Built-in | 80+ tools for CRM, content, workflows |
ghl-mcp | GoHighLevel MCP | Available | Native GHL CRM tools |
supabase | Supabase MCP | Available | Database operations |
stripe-mcp | Stripe MCP | Coming Soon | Payment processing |
shopify-mcp | Shopify MCP | Coming Soon | E-commerce |
vercel-mcp | Vercel MCP | Coming Soon | Deployment |
slack-mcp | Slack MCP | Coming Soon | Team notifications |
| Tool | What it does |
|---|---|
mcp_call_server | Call any connected MCP server |
mcp_list_servers | List available MCP servers |
list_mcp_connections | Show your connected servers |
connect_ghl_mcp | Connect GoHighLevel MCP |
disconnect_ghl_mcp | Disconnect GHL MCP |
ghl_mcp_status | Check GHL MCP connection |
ghl_mcp_tools | List GHL MCP tools |
ghl_mcp_call | Call a GHL MCP tool directly |
| Tool | What it does |
|---|---|
run_workflow | Execute a saved workflow |
create_workflow | Create a new workflow from description |
list_workflows | List your workflows |
get_workflow | Get workflow details |
| Tool | What it does |
|---|---|
get_contacts | Search and retrieve contacts |
create_contact | Add new contacts with tags |
update_contact | Update contact information |
add_tags | Tag contacts for segmentation |
send_sms | Send SMS messages |
send_email | Send emails |
| Tool | What it does |
|---|---|
get_opportunities | View deals in pipelines |
create_opportunity | Create new deals |
| Tool | What it does |
|---|---|
course_generate | Create full courses with modules, lessons, quizzes |
| Tool | What it does |
|---|---|
content_generate | Write blog posts, emails, social posts |
content_rewrite | Improve existing content |
| Tool | What it does |
|---|---|
rocketflow_deploy | Deploy workflows, pipelines, tags |
rocketflow_validate | Validate configurations |
rocketflow_templates | Browse templates |
| Tool | What it does |
|---|---|
agent_execute | Run AI workflows (lead qual, proposals) |
skillforge_execute | Execute AI skills |
| Tool | What it does |
|---|---|
insights_analyze | AI-powered data analysis |
insights_predict | Predictive analytics |
| Tool | What it does |
|---|---|
seo_analyze | Audit pages for SEO |
{
"name": "New Customer Onboarding",
"trigger": "shopify_order",
"actions": [
{ "toolId": "create_contact", "config": { "source": "Shopify" } },
{ "toolId": "add_tags", "config": { "tags": "customer,new" } },
{ "toolId": "send_sms", "config": { "message": "Welcome! Your order is confirmed." } },
{ "toolId": "mcp_call_server", "config": { "serverId": "slack-mcp", "tool": "send_message", "serverArgs": { "channel": "#sales", "text": "New customer!" } } }
]
}
"Create a workflow: when a Shopify purchase happens, create a contact in GHL, send a Slack notification, and add them to Supabase"
The MCP server exposes these resources for context:
| Resource URI | Description |
|---|---|
rocket://location/info | Your CRM location info |
rocket://workflows | Your saved workflows |
rocket://mods | Available Rocket+ mods |
rocket://connections | Connected MCP servers |
| Variable | Required | Description |
|---|---|---|
ROCKET_API_KEY | Yes | Your API key from rocketadd.com/settings |
ROCKET_API_URL | No | API URL (default: https://rocketadd.com) |
| Plan | API Calls/Month | Multi-MCP | Price |
|---|---|---|---|
| Free | 100 | Limited | $0 |
| Starter | 1,000 | Yes | $29/mo |
| Growth | 10,000 | Yes | $79/mo |
| Scale | Unlimited | Yes | $199/mo |
Set ROCKET_API_KEY in your MCP config's env section.
Run connect_ghl_mcp with your GHL PIT token first.
Your API key may be invalid. Generate a new one at rocketadd.com/settings.
mcp_call_server - Universal MCP server routingconnect_ghl_mcp, ghl_mcp_status, ghl_mcp_tools, ghl_mcp_calllist_mcp_connections - View all connected serversMIT - See LICENSE for details.
Made with 🚀 by RocketOpp
ROCKET_API_KEY*secretYour Rocket+ API key. Get one at https://rocketadd.com/settings under API Keys.
ROCKET_API_URLRocket+ API base URL (default: https://rocketadd.com)
explorium-ai/vibeprospecting-mcp
io.github.compuute/lead-enrichment
dev.workers.selbyventurecap.cf-worker/apollo-salesforce-mapper
io.github.br0ski777/company-enrichment
com.mcparmory/apollo
mambalabsdev/mcp-gtm-tech-stack-signal-scraper