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

crosspost-mcp

v0.1.0

Published

MCP server for CrossPost — cross-post to X, Bluesky, LinkedIn, and Threads from Claude, Cursor, or any MCP client

Downloads

104

Readme

CrossPost MCP Server

Cross-post to X, Bluesky, LinkedIn, and Threads from Claude, Cursor, or any MCP-compatible AI assistant. Write once, publish everywhere.

Prerequisites

  1. Create a free account at crosspost-app.vercel.app
  2. Connect your social media accounts on the dashboard
  3. Generate an API key from Settings → API Keys

Installation

Option 1: Claude Desktop (one-click)

Download crosspost-mcp.mcpb from the releases page and double-click it. Claude Desktop will prompt you for your API key — paste it in and you're done.

Option 2: npx (works everywhere)

No installation needed. Add this to your MCP client config:

{
  "mcpServers": {
    "crosspost": {
      "command": "npx",
      "args": ["-y", "crosspost-mcp"],
      "env": {
        "CROSSPOST_API_KEY": "your-api-key-here"
      }
    }
  }
}

Config file locations:

| Client | Config path | |---|---| | Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json | | Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json | | Cursor | .cursor/mcp.json in your workspace, or ~/.cursor/mcp.json globally |

Option 3: Claude Code (CLI)

claude mcp add crosspost -- npx -y crosspost-mcp

Then set the env var in your shell:

export CROSSPOST_API_KEY="your-api-key-here"

Option 4: Manual (clone and build)

git clone https://github.com/jennyouyang/crosspost-mcp.git
cd crosspost-mcp
npm install && npm run build

Then point your MCP client to the built file:

{
  "mcpServers": {
    "crosspost": {
      "command": "node",
      "args": ["/path/to/crosspost-mcp/dist/index.js"],
      "env": {
        "CROSSPOST_API_KEY": "your-api-key-here"
      }
    }
  }
}

Available Tools

| Tool | Description | |---|---| | list_accounts | See your connected platforms and their status | | create_post | Publish or schedule a post across platforms | | list_posts | View recent posts and their per-platform status | | get_post | Get detailed info on a specific post | | cancel_post | Cancel a scheduled post | | reschedule_post | Change the time of a scheduled post | | list_scheduled | View all upcoming scheduled posts |

Usage Examples

Once installed, just talk to Claude naturally:

  • "Post 'Hello world!' to all my platforms"
  • "Post this to Bluesky and Threads: Just shipped a new feature!"
  • "Schedule a post for tomorrow at 9am: Big announcement coming soon"
  • "Show me my recent posts"
  • "What accounts do I have connected?"

Environment Variables

| Variable | Required | Description | |---|---|---| | CROSSPOST_API_KEY | Yes | Your API key from the CrossPost dashboard | | CROSSPOST_API_URL | No | API URL (defaults to production). Only change if self-hosting. |

License

MIT