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

@nsupp/mcp

v0.1.0

Published

nsupp Model Context Protocol server — read conversations, reply, manage contacts and post to team chat from an MCP client. Dependency-free.

Downloads

39

Readme

@nsupp/mcp

Model Context Protocol server for nsupp — lets an MCP client read conversations, draft and send replies, look up contacts and post to team chat. Dependency-free, Node 18+, stdio transport.

Configure

Add it to your MCP client. The secret goes in env, never on the command line:

{
  "mcpServers": {
    "nsupp": {
      "command": "npx",
      "args": ["-y", "@nsupp/mcp"],
      "env": {
        "NSUPP_TOKEN_ID": "nsupp_pk_…",
        "NSUPP_TOKEN_SECRET": "…",
        "NSUPP_WEBSITE_ID": "wk_…"
      }
    }
  }
}

NSUPP_BASE_URL points it at a self-hosted install; NSUPP_TIER selects plugin (default) or website tokens.

Tools

| Tool | Reads / writes | | --- | --- | | get_website, list_operators | read | | list_conversations, get_conversation, list_messages | read | | send_message | writes to the customer | | add_internal_note, set_conversation_state | write, internal | | list_people, get_person | read (personal data) | | list_team_chat, post_team_chat | general team channel | | list_helpdesk_articles | read | | list_bot_blocks, validate_bot_graph, list_bot_scenarios | read (bot authoring) | | create_bot_scenario, update_bot_scenario | write — draft only, no visitor sees it | | deploy_bot_scenario | publishes the bot to real visitors |

Every tool declares the scope it needs in its description, so a 403 tells the model exactly which permission to ask for. Write tools carry MCP annotations — send_message is marked readOnlyHint: false, destructiveHint: true so your client can require a human confirmation before a message reaches a customer. deploy_bot_scenario carries the same annotation for the same reason: publishing a scenario makes it, from that moment, the script every visitor on the selected channels talks to. Authoring is deliberately a four-step pipeline — list_bot_blocks (learn the contract) → validate_bot_graph (check without saving) → create_bot_scenario (draft) → deploy_bot_scenario (publish). Skipping the first step is the most common cause of a bot that silently never runs, because a guessed block name is not a valid block.

Boundaries worth knowing

  • Team chat is the general channel only. Private groups and direct messages are not exposed — their membership belongs to a person, and an API key has no person behind it.
  • The server decides, not this process. Plan tier, scopes, granted consent and tenant isolation are enforced in nsupp's own gate. A model calling a tool has exactly the authority the token has, never more; a 402 plan_required reaches the model verbatim instead of being smoothed over.
  • stdout carries protocol only. Diagnostics go to stderr.

Apache-2.0