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

@postpilotlb/mcp

v0.1.1

Published

MCP server for PostPilot LB — schedule posts, generate content, and manage social accounts from Claude Desktop, Cursor, and other AI assistants

Readme

@postpilotlb/mcp

PostPilot LB is currently in beta testing and will be launching soon at postpilotlb.com.

An MCP (Model Context Protocol) server for PostPilot LB — control your social media scheduler directly from Claude Desktop, Cursor, Windsurf, and other AI assistants using natural language.

Schedule posts, generate AI content, manage your social accounts, and update your Link in Bio without ever opening the dashboard.


Requirements


Setup

1. Generate an API Key

  1. Log in to your PostPilot LB account
  2. Go to Settings → API Keys
  3. Click New API Key and give it a name (e.g. "Claude Desktop")
  4. Copy the key immediately — it starts with pp_live_ and is only shown once

2. Add to Claude Desktop

Open your Claude Desktop config file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the following (replace pp_live_... with your actual key):

{
  "mcpServers": {
    "postpilotlb": {
      "command": "npx",
      "args": ["-y", "@postpilotlb/mcp"],
      "env": {
        "POSTPILOT_API_KEY": "pp_live_your-key-here"
      }
    }
  }
}

If you already have other MCP servers configured, just add the "postpilotlb" block inside your existing "mcpServers" section.

3. Restart Claude Desktop

Fully quit and reopen Claude Desktop. You'll see a 🔨 hammer icon in the chat input when the server is connected — click it to see all available PostPilot tools.


Available Tools

| Tool | Description | |---|---| | list_posts | List your posts, filter by status or platform | | create_post | Draft, schedule, or publish a post immediately | | list_accounts | See all connected social accounts | | generate_content | Generate a post from a prompt using AI | | improve_content | Improve, shorten, lengthen, or re-tone existing content | | get_link_in_bio | Read your Link in Bio page configuration | | update_link_in_bio | Update your bio, theme, or custom links |


Example Prompts

Show me my scheduled posts

Schedule a LinkedIn post about building in public for tomorrow at 9am

Write a Twitter post about productivity for developers

Give me 6 post ideas about AI tools

What social accounts do I have connected?

Show me my Link in Bio page

Tip: Tell Claude your timezone once — "I'm in UTC+3" — and it will handle scheduling times correctly for all future requests.


Other MCP-Compatible Tools

The same setup works for other tools that support MCP. Just use the same npx command and API key:

  • Cursor — add to .cursor/mcp.json
  • Windsurf — add to the MCP config in settings
  • Zed — add to MCP settings

Revoking Access

To revoke access at any time, go to Settings → API Keys in PostPilot LB and delete the key. The connection is immediately disabled.


Environment Variables

| Variable | Required | Default | Description | |---|---|---|---| | POSTPILOT_API_KEY | Yes | — | Your PostPilot API key (pp_live_...) | | POSTPILOT_BASE_URL | No | https://postpilotlb.com | Override for self-hosted or local dev |


Links


License

MIT