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

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
85
Maintainers
1
Weekly downloads
 
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

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

Profiles

ToolDescription
profiles_listList all profiles (workspaces)
profiles_createCreate a new profile
profiles_getGet a profile by ID
profiles_updateUpdate a profile
profiles_deleteDelete a profile

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 workspace usage statistics
validate_postValidate post content against platform limits
validate_mediaValidate media requirements per platform

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 19 Aug 2026

Related posts