npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@contentrabbit/mcp-server

v0.2.0

Published

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

Readme

@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

  1. Go to Content Rabbit Settings > API Keys
  2. Create a new API key
  3. 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

| Variable | Required | Description | | ------------------------ | -------- | -------------------------------------------------------------------------- | | CONTENTRABBIT_API_KEY | Yes | Your Content Rabbit API key | | CONTENTRABBIT_BASE_URL | No | Custom 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

| Tool | Description | | ------------------ | -------------------------------------------------------------- | | posts_list | List posts with optional filtering by status, platform, search | | posts_create | Create a new post | | posts_get | Get a post by ID | | posts_update | Update an existing post | | posts_delete | Delete a post | | posts_publish | Publish a post to social media | | posts_retry | Retry a failed publish | | posts_status | Get publish status with per-platform results | | posts_schedule | Schedule a post for future publishing | | posts_unschedule | Remove schedule, revert to draft |

Teams

| Tool | Description | | -------------- | ----------------- | | teams_list | List all teams | | teams_create | Create a new team | | teams_get | Get a team by ID | | teams_update | Update a team | | teams_delete | Delete a team |

Accounts

| Tool | Description | | --------------------- | ------------------------------------- | | accounts_list | List connected social media accounts | | accounts_get | Get account details | | accounts_health | Check account health and token status | | accounts_disconnect | Disconnect an account |

Queue

| Tool | Description | | ------------------- | --------------------------- | | queue_list_slots | List schedule slots | | queue_create_slot | Create a schedule slot | | queue_update_slot | Update a schedule slot | | queue_delete_slot | Delete a schedule slot | | queue_next_slot | Get the next available slot |

Webhooks

| Tool | Description | | ----------------- | ------------------------------ | | webhooks_list | List webhook subscriptions | | webhooks_create | Create a webhook subscription | | webhooks_get | Get a webhook by ID | | webhooks_delete | Delete a webhook | | webhooks_test | Send a test event to a webhook |

Utility

| Tool | Description | | ---------------- | --------------------------------------------- | | usage_stats | Get team usage statistics | | validate_post | Validate post content against platform limits | | validate_media | Validate media requirements per platform |

Generate

| Tool | Description | | ------------------- | -------------------------------------- | | generate_text | Generate text content with an AI model | | generate_hashtags | Generate hashtags tuned to a platform |

Media

| Tool | Description | | ------------------- | ------------------- | | media_list_images | List library images | | media_list_videos | List library videos |

Analytics

| Tool | Description | | ------------------------ | -------------------------------------- | | analytics_get_calendar | Get posts grouped by day for a range | | analytics_get_activity | Get the team activity feed for a range | | analytics_get_posts | Get 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