Sign In

@contentrabbit/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contentrabbit/mcp-server

Content Rabbit MCP Server - AI-powered social media management tools

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

@contentrabbit/mcp-server

MCP (Model Context Protocol) server for Content Rabbit. Exposes Content Rabbit's public API as tools that AI assistants like Claude Desktop and Cursor can call directly.

Installation

npm install -g @contentrabbit/mcp-server

Or run directly with npx:

npx @contentrabbit/mcp-server

Setup

Get your API key

  • Go to Content Rabbit Settings > API Keys
  • Create a new API key
  • Copy the key

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "content-rabbit": {
      "command": "npx",
      "args": ["@contentrabbit/mcp-server"],
      "env": {
        "CONTENTRABBIT_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "content-rabbit": {
      "command": "npx",
      "args": ["@contentrabbit/mcp-server"],
      "env": {
        "CONTENTRABBIT_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

Add to your Claude Code MCP settings (.claude/settings.json):

{
  "mcpServers": {
    "content-rabbit": {
      "command": "npx",
      "args": ["@contentrabbit/mcp-server"],
      "env": {
        "CONTENTRABBIT_API_KEY": "your-api-key"
      }
    }
  }
}

Environment Variables

VariableRequiredDescription
CONTENTRABBIT_API_KEYYesYour Content Rabbit API key
CONTENTRABBIT_BASE_URLNoCustom API base URL (default: https://contentrabbitai.com/api/public/v1)

Note: The legacy names CONTENT_RABBIT_API_KEY and CONTENT_RABBIT_API_URL are still supported for backwards compatibility.

Available Tools

The stdio server and the hosted Streamable HTTP server (https://contentrabbitai.com/api/v1/mcp) mount the same shared tool registry (@contentrabbit/mcp-core), so both expose this identical tool set.

Posts

ToolDescription
posts_listList posts with optional filtering by status, platform, search
posts_createCreate a new post
posts_getGet a post by ID
posts_updateUpdate an existing post
posts_deleteDelete a post
posts_publishPublish a post to social media
posts_retryRetry a failed publish
posts_statusGet publish status with per-platform results
posts_scheduleSchedule a post for future publishing
posts_unscheduleRemove schedule, revert to draft

Teams

ToolDescription
teams_listList all teams
teams_createCreate a new team
teams_getGet a team by ID
teams_updateUpdate a team
teams_deleteDelete a team

Accounts

ToolDescription
accounts_listList connected social media accounts
accounts_getGet account details
accounts_healthCheck account health and token status
accounts_disconnectDisconnect an account

Queue

ToolDescription
queue_list_slotsList schedule slots
queue_create_slotCreate a schedule slot
queue_update_slotUpdate a schedule slot
queue_delete_slotDelete a schedule slot
queue_next_slotGet the next available slot

Webhooks

ToolDescription
webhooks_listList webhook subscriptions
webhooks_createCreate a webhook subscription
webhooks_getGet a webhook by ID
webhooks_deleteDelete a webhook
webhooks_testSend a test event to a webhook

Utility

ToolDescription
usage_statsGet team usage statistics
validate_postValidate post content against platform limits
validate_mediaValidate media requirements per platform

Generate

ToolDescription
generate_textGenerate text content with an AI model
generate_hashtagsGenerate hashtags tuned to a platform

Media

ToolDescription
media_list_imagesList library images
media_list_videosList library videos

Analytics

ToolDescription
analytics_get_calendarGet posts grouped by day for a range
analytics_get_activityGet the team activity feed for a range
analytics_get_postsGet post count summaries for a range

Development

# Install dependencies
bun install

# Build
bun run --filter @contentrabbit/mcp-server build

# Type check
bun run --filter @contentrabbit/mcp-server typecheck

License

MIT

FAQs

Package last updated on 23 Aug 2026

Related posts