CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Rocket Plus Mcp

crypto-goatz/rocket-plus-mcp
authSTDIOregistry active
Summary

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.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Rocket+ MCP Server

Multi-MCP Orchestration Hub - Connect GHL, Stripe, Shopify, Supabase, and more through a single AI interface.

npm version MCP Compatible

What's New in v3.0

Multi-MCP Orchestration - Rocket+ now acts as a central hub that can call other MCP servers:

  • GHL MCP Integration - Native GoHighLevel MCP support
  • Workflow Chaining - Create workflows that span multiple services
  • 80+ Tools - Expanded tool set for complete automation

What You Can Do

Talk to your CRM and orchestrate multi-service workflows:

  • "Connect my GHL MCP" - Set up GoHighLevel MCP integration
  • "Create a workflow: Shopify order → GHL contact → Slack notification" - Chain actions across services
  • "Get my last 10 leads" - Retrieve contacts instantly
  • "Run my welcome workflow" - Execute saved multi-step workflows
  • "Create a course about email marketing" - Generate complete courses with AI

Quick Start

1. Get Your API Key

  1. Sign up at rocketadd.com
  2. Go to Settings → API Keys
  3. Generate a new MCP API key (starts with rp_)

2. Configure Your MCP Client

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"
      }
    }
  }
}

3. Restart Your Client

The Rocket+ tools will now be available!


GHL MCP Integration

Rocket+ can connect to GoHighLevel's official MCP server, giving you access to all native GHL tools through Rocket+.

Setting Up GHL MCP

  1. Create a Private Integration Token (PIT) in GHL:

    • Go to your GHL Sub-Account Settings
    • Navigate to Integrations → Private Integrations
    • Click Create Token
    • Enable scopes: contacts, conversations, workflows, calendars, opportunities
    • Copy the token (starts with pit-)
  2. 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"
  }
}
  1. Use GHL MCP Tools:

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 }
  }
}

Multi-MCP Orchestration

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)   │                  │
│   └──────────┘  └──────────┘  └──────────┘                  │
└─────────────────────────────────────────────────────────────┘

Supported MCP Servers

Server IDNameStatusDescription
rocket-plusRocket+ MCPBuilt-in80+ tools for CRM, content, workflows
ghl-mcpGoHighLevel MCPAvailableNative GHL CRM tools
supabaseSupabase MCPAvailableDatabase operations
stripe-mcpStripe MCPComing SoonPayment processing
shopify-mcpShopify MCPComing SoonE-commerce
vercel-mcpVercel MCPComing SoonDeployment
slack-mcpSlack MCPComing SoonTeam notifications

Available Tools (80+)

MCP Orchestration

ToolWhat it does
mcp_call_serverCall any connected MCP server
mcp_list_serversList available MCP servers
list_mcp_connectionsShow your connected servers
connect_ghl_mcpConnect GoHighLevel MCP
disconnect_ghl_mcpDisconnect GHL MCP
ghl_mcp_statusCheck GHL MCP connection
ghl_mcp_toolsList GHL MCP tools
ghl_mcp_callCall a GHL MCP tool directly

Workflow Orchestration

ToolWhat it does
run_workflowExecute a saved workflow
create_workflowCreate a new workflow from description
list_workflowsList your workflows
get_workflowGet workflow details

CRM & Contacts

ToolWhat it does
get_contactsSearch and retrieve contacts
create_contactAdd new contacts with tags
update_contactUpdate contact information
add_tagsTag contacts for segmentation
send_smsSend SMS messages
send_emailSend emails

Sales & Pipeline

ToolWhat it does
get_opportunitiesView deals in pipelines
create_opportunityCreate new deals

AI Course Generator

ToolWhat it does
course_generateCreate full courses with modules, lessons, quizzes

Content Creation

ToolWhat it does
content_generateWrite blog posts, emails, social posts
content_rewriteImprove existing content

Workflow Automation

ToolWhat it does
rocketflow_deployDeploy workflows, pipelines, tags
rocketflow_validateValidate configurations
rocketflow_templatesBrowse templates

AI Agents

ToolWhat it does
agent_executeRun AI workflows (lead qual, proposals)
skillforge_executeExecute AI skills

Analytics & Insights

ToolWhat it does
insights_analyzeAI-powered data analysis
insights_predictPredictive analytics

SEO & Marketing

ToolWhat it does
seo_analyzeAudit pages for SEO

Workflow Examples

Example 1: New Customer Onboarding

{
  "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!" } } }
  ]
}

Example 2: Multi-MCP Lead Capture

"Create a workflow: when a Shopify purchase happens, create a contact in GHL, send a Slack notification, and add them to Supabase"

Resources

The MCP server exposes these resources for context:

Resource URIDescription
rocket://location/infoYour CRM location info
rocket://workflowsYour saved workflows
rocket://modsAvailable Rocket+ mods
rocket://connectionsConnected MCP servers

Environment Variables

VariableRequiredDescription
ROCKET_API_KEYYesYour API key from rocketadd.com/settings
ROCKET_API_URLNoAPI URL (default: https://rocketadd.com)

Pricing

PlanAPI Calls/MonthMulti-MCPPrice
Free100Limited$0
Starter1,000Yes$29/mo
Growth10,000Yes$79/mo
ScaleUnlimitedYes$199/mo

Troubleshooting

"API key required"

Set ROCKET_API_KEY in your MCP config's env section.

"GHL MCP not configured"

Run connect_ghl_mcp with your GHL PIT token first.

"Authentication failed"

Your API key may be invalid. Generate a new one at rocketadd.com/settings.

Tools not appearing

  1. Restart your MCP client completely
  2. Verify JSON syntax in config file
  3. Check that the command path is correct

Links

  • Website: rocketadd.com
  • Documentation: rocketadd.com/docs/integrations/mcp
  • GHL MCP Docs: marketplace.gohighlevel.com/docs/other/mcp
  • Support: support@rocketadd.com
  • GitHub: github.com/Crypto-Goatz/rocket-plus-mcp

Changelog

v3.0.0 (January 2026)

  • NEW: GHL MCP Integration - Connect to GoHighLevel's official MCP server
  • NEW: Multi-MCP Orchestration - Call any connected MCP server through Rocket+
  • NEW: mcp_call_server - Universal MCP server routing
  • NEW: connect_ghl_mcp, ghl_mcp_status, ghl_mcp_tools, ghl_mcp_call
  • NEW: list_mcp_connections - View all connected servers
  • IMPROVED: Workflow engine with cross-MCP action support
  • IMPROVED: Resources now show actual connection status
  • Expanded to 80+ tools

v2.2.0

  • Added workflow orchestration tools
  • Improved session initialization
  • Added prompts for common tasks

v2.1.0

  • Initial public release
  • 56+ tools for CRM, content, and automation

License

MIT - See LICENSE for details.


Made with 🚀 by RocketOpp

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

ROCKET_API_KEY*secret

Your Rocket+ API key. Get one at https://rocketadd.com/settings under API Keys.

ROCKET_API_URL

Rocket+ API base URL (default: https://rocketadd.com)

Categories
Sales & MarketingAutomation & WorkflowsFinance & Commerce
Registryactive
Packagerocket-plus-mcp
TransportSTDIO
AuthRequired
UpdatedJan 14, 2026
View on GitHub

Related Sales & Marketing MCP Servers

View all →
Vibe Prospecting

explorium-ai/vibeprospecting-mcp

Power your chat with B2B data to create lead lists, research companies, personalize your outreach, and more.
22
Lead Enrichment API

io.github.compuute/lead-enrichment

Curated EU AI/Sec/DevTools/Fintech B2B leads, Claude-scored. MCP+x402. Free 250/mo.
Apollo Salesforce Mapper

dev.workers.selbyventurecap.cf-worker/apollo-salesforce-mapper

Apollo->Salesforce Lead mapper. No LLM. Strict-fail required fields. PASS/REPAIR/FAIL verdict.
Company Enrichment API

io.github.br0ski777/company-enrichment

Company firmographics from domain: name, socials, tech stack, emails, phone, address
Apollo

com.mcparmory/apollo

Search and enrich contact and company data from 210M+ people and 35M+ companies
25
Mcp Gtm Tech Stack Signal Scraper

mambalabsdev/mcp-gtm-tech-stack-signal-scraper

Detects a company CRM, sequencer, and marketing automation from its public website. Clay-ready.
1