# io.github.Crypto-Goatz/rocket-plus-mcp (npm · rocket-plus-mcp)

56+ AI tools for CRM, content, workflows, SkillForge & marketing automation.

- Trust score: 55/100 (low)
- Change this week: +37
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `rocket-plus-mcp`: 55/100 (this document), [markdown](https://verifymcp.io/servers/crypto-goatz-rocket-plus-mcp/rocket-plus-mcp.md), [page](https://verifymcp.io/servers/crypto-goatz-rocket-plus-mcp/rocket-plus-mcp)

## Channel facts

- Registry: `npm`
- Package: `rocket-plus-mcp`
- Version: `2.1.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 70/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known high-severity CVE affects @modelcontextprotocol/sdk 0.5.0, a direct dependency. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (13 of 14), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL redirects; it must resolve directly.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 186 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 78/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 3267 tokens (~46/item across 71 items; 64 tools + 7 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 99/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 97% of tool parameters carry a description.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add crypto-goatz-rocket-plus-mcp -- npx -y rocket-plus-mcp
```

### Codex

```bash
codex mcp add crypto-goatz-rocket-plus-mcp -- npx -y rocket-plus-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "crypto-goatz-rocket-plus-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "rocket-plus-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add crypto-goatz-rocket-plus-mcp --command npx --arg -y --arg rocket-plus-mcp
```

### Hermes

```yaml
mcp_servers:
  crypto-goatz-rocket-plus-mcp:
    command: "npx"
    args: ["-y", "rocket-plus-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "crypto-goatz-rocket-plus-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "rocket-plus-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 55, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 51, +16)

- [security improvement] Malware scan: unverified → pass
- [functional improvement] Schema quality: unverified → good

### 2026-07-31 (score 35, −27)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 62, +44)

- [security regression] CVE-2025-66414 affects this package: high
- [security regression] Provenance: unverified → fail
- [security regression] Known CVEs: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [functional improvement] Schema quality: unverified → 100
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: unverified
- [functional] First check of Tool coverage: 97
- [functional] Licence: MIT

### 2026-07-27 (score 18)

First indexed and scored.

## MCP tools (64)

### `get_contacts` (~57 tokens)

Get a list of contacts from the CRM

Input parameters:

- `limit` (number): Maximum number of contacts (default: 20)
- `query` (string): Search query to filter contacts
- `tags` (string): Filter by comma-separated tags

### `create_contact` (~78 tokens)

Create a new contact in the CRM

Input parameters:

- `customFields` (object): Custom field key-value pairs
- `email` (string, required): Email address
- `firstName` (string): First name
- `lastName` (string): Last name
- `phone` (string): Phone number
- `tags` (string): Comma-separated tags

### `update_contact` (~69 tokens)

Update an existing contact

Input parameters:

- `contactId` (string, required): Contact ID to update
- `email` (string)
- `firstName` (string)
- `lastName` (string)
- `phone` (string)
- `tags` (string): Tags to set (replaces existing)

### `add_tags` (~37 tokens)

Add tags to a contact

Input parameters:

- `contactId` (string, required): Contact ID
- `tags` (string, required): Comma-separated tags to add

### `get_opportunities` (~40 tokens)

Get opportunities/deals from pipelines

Input parameters:

- `pipelineId` (string): Filter by pipeline ID
- `stageId` (string): Filter by stage ID

### `create_opportunity` (~66 tokens)

Create a new opportunity/deal

Input parameters:

- `contactId` (string): Associated contact ID
- `monetaryValue` (number): Deal value
- `name` (string, required): Opportunity name
- `pipelineId` (string, required): Pipeline ID
- `stageId` (string, required): Stage ID

### `send_sms` (~35 tokens)

Send an SMS message to a contact

Input parameters:

- `contactId` (string, required): Contact ID
- `message` (string, required): Message content

### `send_email` (~46 tokens)

Send an email to a contact

Input parameters:

- `body` (string, required): Email body (HTML supported)
- `contactId` (string, required): Contact ID
- `subject` (string, required): Email subject

### `rocketflow_deploy` (~69 tokens)

Deploy a RocketFlow JSON workflow to the CRM. Automatically detects type and deploys contacts, custom fields, custom values, tags, pipelines, or workflows.

Input parameters:

- `dryRun` (boolean): If true, validates without deploying
- `json` (string, required): The RocketFlow JSON configuration to deploy

### `rocketflow_validate` (~31 tokens)

Validate a RocketFlow JSON configuration without deploying

Input parameters:

- `json` (string, required): The RocketFlow JSON to validate

### `rocketflow_templates` (~32 tokens)

Get available RocketFlow templates

Input parameters:

- `category` (string): Filter by category (workflows, pipelines, etc.)

### `agent_execute` (~73 tokens)

Execute a Rocket Agent AI workflow. Agents can qualify leads, send proposals, book appointments, and more.

Input parameters:

- `flowId` (string, required): Agent flow template ID (e.g., proposal-agent, smart-followup-agent)
- `triggerData` (object, required): Data to pass to the agent (contactId, email, etc.)

### `agent_list` (~14 tokens)

List available Rocket Agent templates

### `agent_status` (~30 tokens)

Get status of a running or completed agent execution

Input parameters:

- `executionId` (string, required): Execution ID to check

### `course_generate` (~115 tokens)

Generate a complete course with AI. Creates modules, lessons, quizzes, and content.

Input parameters:

- `audience` (string): Target audience (beginner, intermediate, advanced)
- `includeQuizzes` (boolean): Include quizzes (default: true)
- `lessonsPerModule` (number): Lessons per module (default: 3)
- `modules` (number): Number of modules (default: 5)
- `style` (string): Teaching style (practical, theoretical, mixed)
- `topic` (string, required): Course topic or title

### `course_outline` (~36 tokens)

Generate just a course outline without full content

Input parameters:

- `modules` (number): Number of modules
- `topic` (string, required): Course topic

### `content_generate` (~107 tokens)

Generate marketing content with AI. Creates blog posts, emails, social posts, etc.

Input parameters:

- `keywords` (string): SEO keywords (comma-separated)
- `length` (string): Length: short, medium, long
- `targetAudience` (string): Target audience description
- `tone` (string): Tone: professional, casual, persuasive, informative
- `topic` (string, required): Topic or subject
- `type` (string, required): Content type: blog, email, social, landing, ad

### `content_rewrite` (~53 tokens)

Rewrite or improve existing content

Input parameters:

- `content` (string, required): Original content to rewrite
- `goal` (string, required): Goal: improve, shorten, expand, simplify, persuade
- `tone` (string): Desired tone

### `content_ideas` (~50 tokens)

Generate content ideas for a topic

Input parameters:

- `count` (number): Number of ideas (default: 10)
- `topic` (string, required): Topic area
- `type` (string): Content type focus

### `rss_add_feed` (~62 tokens)

Add an RSS feed to monitor

Input parameters:

- `autoPost` (boolean): Auto-post new items
- `name` (string, required): Feed name
- `rewriteWithAI` (boolean): Rewrite content with AI before posting
- `url` (string, required): RSS feed URL

### `rss_get_items` (~44 tokens)

Get latest items from RSS feeds

Input parameters:

- `feedId` (string): Specific feed ID (optional)
- `limit` (number): Number of items (default: 20)

### `rss_generate_post` (~60 tokens)

Generate a social/blog post from an RSS item

Input parameters:

- `addOpinion` (boolean): Add AI-generated opinion/commentary
- `itemId` (string, required): RSS item ID
- `platform` (string, required): Platform: linkedin, twitter, facebook, blog

### `canvas_create` (~76 tokens)

Create a new canvas project (landing page, form, email template)

Input parameters:

- `aiPrompt` (string): Describe what you want AI to generate
- `name` (string, required): Project name
- `template` (string): Template ID to start from (optional)
- `type` (string, required): Type: landing, form, email, social

### `canvas_generate` (~59 tokens)

Generate canvas content with AI from a description

Input parameters:

- `projectId` (string): Project ID to update
- `prompt` (string, required): Describe what you want to create
- `style` (string): Visual style: modern, minimal, bold, elegant

### `canvas_export` (~37 tokens)

Export a canvas project

Input parameters:

- `format` (string, required): Format: html, image, pdf
- `projectId` (string, required): Project ID

### `dashboard_create` (~48 tokens)

Create a custom analytics dashboard

Input parameters:

- `layout` (string): Layout: grid, rows, columns
- `name` (string, required): Dashboard name
- `widgets` (array): Array of widget configurations

### `dashboard_add_widget` (~70 tokens)

Add a widget to a dashboard

Input parameters:

- `config` (object): Widget configuration
- `dashboardId` (string, required): Dashboard ID
- `dataSource` (string, required): Data source: contacts, opportunities, appointments, custom
- `type` (string, required): Widget type: chart, metric, table, list

### `apex_create_test` (~95 tokens)

Create an A/B test experiment

Input parameters:

- `goal` (string): Goal: clicks, conversions, signups
- `name` (string, required): Test name
- `trafficSplit` (string): Traffic split (e.g., "50/50", "33/33/34")
- `type` (string, required): Type: email_subject, landing_page, cta, form
- `variants` (array, required): Array of variant configurations

### `apex_get_results` (~27 tokens)

Get A/B test results and winner

Input parameters:

- `testId` (string, required): Test ID

### `apex_optimize` (~42 tokens)

Get AI optimization suggestions

Input parameters:

- `data` (object): Current performance data
- `type` (string, required): What to optimize: funnel, email, landing, workflow

### `insights_analyze` (~73 tokens)

Get AI-powered insights from your data

Input parameters:

- `dataType` (string, required): Data to analyze: contacts, opportunities, campaigns, all
- `question` (string): Specific question to answer (optional)
- `timeframe` (string): Timeframe: 7d, 30d, 90d, ytd

### `insights_predict` (~53 tokens)

Get AI predictions based on historical data

Input parameters:

- `horizon` (string): Prediction horizon: 7d, 30d, 90d
- `metric` (string, required): Metric to predict: revenue, leads, conversions

### `insights_report` (~46 tokens)

Generate an AI-written analytics report

Input parameters:

- `format` (string): Format: summary, detailed, executive
- `type` (string, required): Report type: weekly, monthly, campaign, funnel

### `focus_create_session` (~52 tokens)

Create a focused work session with tasks

Input parameters:

- `duration` (number): Duration in minutes (default: 25)
- `goal` (string, required): Session goal
- `tasks` (array): Array of task strings

### `focus_get_tasks` (~50 tokens)

Get AI-suggested tasks based on your CRM data

Input parameters:

- `category` (string): Category: followups, opportunities, admin
- `priority` (string): Priority: high, medium, low

### `seo_analyze` (~40 tokens)

Analyze a page for SEO issues and opportunities

Input parameters:

- `keywords` (string): Target keywords (comma-separated)
- `url` (string, required): URL to analyze

### `seo_generate_meta` (~53 tokens)

Generate SEO-optimized meta tags

Input parameters:

- `content` (string, required): Page content or description
- `keywords` (string): Target keywords
- `type` (string): Page type: homepage, product, blog, landing

### `seo_keyword_research` (~43 tokens)

Get keyword suggestions and search volume estimates

Input parameters:

- `intent` (string): Intent: informational, commercial, transactional
- `seed` (string, required): Seed keyword or topic

### `research_competitors` (~45 tokens)

Research competitor websites and strategies

Input parameters:

- `competitors` (string, required): Competitor domains (comma-separated)
- `focus` (string): Focus: pricing, features, messaging, seo

### `research_trends` (~47 tokens)

Get market trends for an industry or topic

Input parameters:

- `industry` (string, required): Industry or niche
- `timeframe` (string): Timeframe: current, 6mo, 1yr

### `research_ideas` (~45 tokens)

Get feature/product ideas from market research data

Input parameters:

- `category` (string): Category to research (from CRM ideas board)
- `limit` (number): Number of ideas to return

### `api_test` (~42 tokens)

Test an API connection

Input parameters:

- `endpoint` (string, required): CRM API endpoint to test
- `method` (string): HTTP method: GET, POST, PUT, DELETE

### `api_list_endpoints` (~32 tokens)

List available CRM API endpoints

Input parameters:

- `category` (string): Category: contacts, opportunities, calendars, etc.

### `webhook_create` (~51 tokens)

Create a new webhook endpoint

Input parameters:

- `events` (array): Events to listen for
- `name` (string, required): Webhook name
- `targetUrl` (string): URL to forward webhooks to (optional)

### `webhook_list` (~26 tokens)

List webhook endpoints and recent events

Input parameters:

- `includeEvents` (boolean): Include recent events

### `form_create` (~63 tokens)

Create a new lead capture form

Input parameters:

- `aiOptimize` (boolean): Enable AI A/B testing
- `fields` (array): Array of field configurations
- `name` (string, required): Form name
- `style` (string): Form style: minimal, modern, classic

### `form_get_submissions` (~46 tokens)

Get form submissions

Input parameters:

- `formId` (string, required): Form ID
- `limit` (number): Number of submissions
- `since` (string): ISO date to filter from

### `visitors_active` (~28 tokens)

Get currently active visitors on your site

Input parameters:

- `siteId` (string): Site ID (optional)

### `visitors_history` (~55 tokens)

Get visitor history and analytics

Input parameters:

- `filter` (string): Filter: all, identified, high_intent
- `timeframe` (string): Timeframe: 1h, 24h, 7d, 30d

### `cro_analyze` (~40 tokens)

Analyze conversion rate and get optimization suggestions

Input parameters:

- `funnelId` (string): Funnel or page ID to analyze
- `goal` (string): Conversion goal

### `cro_heatmap` (~41 tokens)

Get heatmap data for a page

Input parameters:

- `pageUrl` (string, required): Page URL
- `type` (string): Type: click, scroll, attention

### `game_create` (~70 tokens)

Create a gamified lead capture experience

Input parameters:

- `name` (string, required): Game name
- `prizes` (array): Array of prize configurations
- `questions` (array): Questions for quiz/trivia (if applicable)
- `type` (string, required): Game type: quiz, spin-wheel, scratch-card, trivia

### `game_stats` (~23 tokens)

Get game performance statistics

Input parameters:

- `gameId` (string, required): Game ID

### `mcp_list_servers` (~34 tokens)

List available MCP servers in the federation

Input parameters:

- `category` (string): Category: all, crm, marketing, analytics

### `mcp_call_server` (~53 tokens)

Call a tool on a federated MCP server

Input parameters:

- `args` (object): Tool arguments
- `serverId` (string, required): Server ID to call
- `tool` (string, required): Tool name on that server

### `get_location_stats` (~21 tokens)

Get location statistics (users, calendars, pipelines, workflows)

### `get_usage` (~16 tokens)

Get current API usage and subscription limits

### `list_mods` (~19 tokens)

List all available Rocket+ mods and their status

### `skillforge_execute` (~110 tokens)

Execute a SkillForge AI skill. Available skills: lead-qualifier (AI lead scoring), proposal-generator (auto-generate proposals), content-loop (blog + social campaigns).

Input parameters:

- `async` (boolean): Run asynchronously (default: false)
- `contactId` (string, required): Contact ID to execute skill for
- `input` (object): Additional input data for the skill
- `skillId` (string, required): Skill ID: lead-qualifier, proposal-generator, content-loop, or custom skill ID

### `skillforge_list` (~40 tokens)

List all available SkillForge skills (pre-built and custom)

Input parameters:

- `category` (string): Filter by category: lead-gen, sales, content, custom

### `skillforge_status` (~30 tokens)

Check the status of a SkillForge execution

Input parameters:

- `executionId` (string, required): Execution ID to check

### `skillforge_results` (~45 tokens)

Get the results of a completed SkillForge execution

Input parameters:

- `executionId` (string, required): Execution ID
- `format` (string): Output format: full, summary, actions-only

### `skillforge_create` (~68 tokens)

Create a custom SkillForge skill from a description

Input parameters:

- `description` (string, required): What the skill should do
- `name` (string, required): Skill name
- `outputs` (array): Expected outputs (tags, fields, actions)
- `triggers` (array): CRM events that trigger this skill

### `skillforge_usage` (~34 tokens)

Get SkillForge usage statistics and billing info

Input parameters:

- `period` (string): Period: today, week, month, all

## Diagnostics

Captured diagnostic sections: Provenance, Vulnerabilities, Dependencies. The full working is on the page: https://verifymcp.io/servers/crypto-goatz-rocket-plus-mcp/rocket-plus-mcp#diagnostics

## Score history

- 2026-08-03: 55
- 2026-08-02: 51
- 2026-08-01: 35
- 2026-07-31: 35
- 2026-07-30: 62
- 2026-07-28: 62
- 2026-07-27: 18

## Links

- npm package: https://www.npmjs.com/package/rocket-plus-mcp
- Socket report: https://socket.dev/npm/package/rocket-plus-mcp
- Changelog RSS feed: https://verifymcp.io/servers/crypto-goatz-rocket-plus-mcp/rocket-plus-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/crypto-goatz-rocket-plus-mcp/rocket-plus-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/crypto-goatz-rocket-plus-mcp/rocket-plus-mcp
