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

sellthat-mcp

v0.1.0

Published

Model Context Protocol server for SellThat.ai PayKit — lets an AI assistant create products, payment buttons, paywalls, and test checkouts on your behalf through scoped, revocable access.

Readme

SellThat MCP server

A Model Context Protocol server that lets an AI assistant (Claude Desktop, Cursor, and other MCP clients) work with a SellThat.ai PayKit account on your behalf — through scoped, revocable access that you approve in your browser.

How access works

The MCP server never sees your password. Instead it uses an OAuth-style approval flow:

  1. The assistant calls sellthat_login with no arguments and shows you an approval link.
  2. You open the link, review exactly what access is being requested, and approve it.
  3. You copy the one-time code shown and give it to the assistant.
  4. The assistant exchanges that code for a scoped key and is connected.

You can revoke a connected assistant at any time from Connected apps in your SellThat dashboard.

What it can do

Safe actions run directly:

  • sellthat_login — connect to your account
  • sellthat_create_product — create a draft product
  • sellthat_create_payment_button — add a checkout button
  • sellthat_get_embed_code — get the HTML to add a button to a site
  • sellthat_install_react_button — generate a React checkout component
  • sellthat_add_paywall — generate paywall code
  • sellthat_create_webhook_handler — generate a webhook handler
  • sellthat_check_entitlement — check whether a buyer has access
  • sellthat_test_checkout — create a test checkout

Money-moving and destructive actions are deliberately restricted:

  • A live checkout (real money) requires explicit confirm: true.
  • Refunds, price changes, product/button deletion, payouts and bank changes are never exposed as tools and cannot be triggered through MCP.

Running it

npx sellthat-mcp

Set SELLTHAT_API_BASE to point at a non-production instance during development (defaults to https://sellthat.ai).

Claude Desktop config example

{
  "mcpServers": {
    "sellthat": {
      "command": "npx",
      "args": ["sellthat-mcp"]
    }
  }
}