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

@wahlu/mcp-server

v0.3.1

Published

MCP server for the Wahlu social media management API

Readme

@wahlu/mcp-server

The official Model Context Protocol (MCP) server for Wahlu. Connect AI coding tools like Claude Code, Cursor, and Windsurf to your Wahlu account and manage social media content through natural language.

Quick start

No installation required — just configure your AI tool to run it via npx.

Claude Code

Add to your .mcp.json or .claude/settings.json:

{
  "mcpServers": {
    "wahlu": {
      "command": "npx",
      "args": ["@wahlu/mcp-server"],
      "env": {
        "WAHLU_API_KEY": "wahlu_live_your_api_key_here"
      }
    }
  }
}

Cursor

Open Cursor settings, navigate to MCP Servers, and add a new server:

{
  "command": "npx",
  "args": ["@wahlu/mcp-server"],
  "env": {
    "WAHLU_API_KEY": "wahlu_live_your_api_key_here"
  }
}

API key

You need a Wahlu API key with the appropriate scopes. Create one in your Wahlu dashboard under Settings > API Keys.

Available tools

Once connected, the MCP server exposes these tools to your AI client:

| Category | Tools | |----------|-------| | Brands | list_brands | | Content Items | list_content_items, get_content_item, create_content_item, update_content_item, delete_content_item | | Publish Runs | list_publish_runs, create_publish_run, update_publish_run, delete_publish_run | | Queues | list_queues, add_content_item_to_queue | | Content | list_ideas, create_idea, list_labels | | Media | list_media, get_upload_url, finalise_media_upload | | Integrations | list_integrations | | Publications | list_publications | | Community | list_community_posts, get_community_post, create_community_post, update_community_post, delete_community_post, add_admin_note, list_community_comments, add_community_comment, delete_community_comment | | Admin Marketing | admin_create_brand, admin_onboard_brand, admin_start_website_scan, admin_get_website_scan, admin_get_brand_status, admin_start_content_pipeline, admin_get_marketing_sample_pack, admin_create_claim_link |

Media upload flow

For media uploads, use this sequence:

  1. Call get_upload_url to create a media record and receive signed upload URL(s).
  2. Upload file bytes with HTTP PUT to upload_url (and thumbnail URLs if needed).
  3. Call finalise_media_upload with the returned media id to set status to ready_for_processing.
  4. Use that media ID in create_content_item or update_content_item platform settings.

Example prompts

> List all my brands and show their connected platforms.

> Upload media for my brand and finalise it for processing.

> Create a new content item for my brand "Acme Co" with the content
  "Excited to announce our new product launch!"

> Create a publish run for tomorrow at 9am GMT.

> Show me all publish runs scheduled for this week.

> Create a prospect brand for Acme Dental, configure automatic onboarding
  with 3 cross-posts per week, start the website scan, and fetch the
  first ready sample pack.

> Create a non-expiring claim link for that prospect brand so I can put it in an email.

Documentation

License

MIT