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

@nullplatform/mcp

v0.1.17

Published

nullplatform from your code assistant — an MCP server that replaces the dashboard for the everyday developer journey

Downloads

2,361

Readme

Turn your code assistant (Claude Code, Cursor, Claude Desktop, …) into the frontend for nullplatform. Deploy, move traffic, roll back, read logs and config — from the place you already work, aware of the repo you're in. Most actions take zero arguments inside a linked repo.

you    › deploy this
claude › Deploying #4312 on dev — waiting for instances
         Created release 1.4.2 from build #991 (main @ab12cd34)
         → Next: move traffic to 25%

What it does

  • Deploy & release — ship the latest build, cut the release, walk traffic (canary → 100%), finalize or roll back.
  • Observe — recent builds, logs, and golden-signal metrics per scope.
  • Configure — environment variables & file parameters (secret values masked).
  • "Is anything broken?" — an org-wide digest across all your apps, no app name needed.
  • Interactive — on hosts that render MCP Apps (claude.ai, ChatGPT) you get live panels, a traffic slider, and log/metric views; terminals get clean markdown.

Installation

You need a nullplatform API key (create one in the dashboard, or run np login). It runs via npx — no install, no clone.

Claude Code

claude mcp add nullplatform -e NP_API_KEY=<your-key> -- npx -y @nullplatform/mcp

Claude Desktop — Settings → Developer → Edit Config, then fully restart:

{
  "mcpServers": {
    "nullplatform": {
      "command": "npx",
      "args": ["-y", "@nullplatform/mcp"],
      "env": { "NP_API_KEY": "<your-key>" }
    }
  }
}

Cursor / Windsurf / others — same shape in their mcp.json (command: "npx", args: ["-y", "@nullplatform/mcp"], env.NP_API_KEY).

Usage

Open your assistant in a repo linked to a nullplatform application and just ask:

  • "what's the status?" · "is anything broken?"
  • "deploy this to dev"
  • "move traffic to 50%" · "finalize" · "roll me back"
  • "show logs" · "show metrics"
  • "set DATABASE_URL as a secret"

Most tools infer the application from your git remote, so you rarely pass arguments. There are also three slash-command prompts: /ship, /setup, /rollback.

Self-hosting (multi-user)

Run it as a shared HTTP server where every caller brings their own key:

npx -y @nullplatform/mcp --http 8080   # → http://host:8080/mcp

The server holds no credentials — each request authenticates with the caller's own nullplatform key, so platform RBAC applies per user. Run it behind a TLS-terminating reverse proxy on a trusted network.

Debug logging

Off by default. Set NP_LOG_LEVEL (debug/info/warn/error) to turn on structured logs of every platform API call (method, path, status, latency) and key tool internals. Logs go to stderr (never stdout, which carries the stdio protocol), or to a file with NP_LOG_FILE. Credentials are redacted.

"env": { "NP_API_KEY": "<your-key>", "NP_LOG_LEVEL": "debug", "NP_LOG_FILE": "/tmp/np-mcp.log" }

Documentation

Full tool reference, the multi-user security model, design rationale, and the development guide: docs/ARCHITECTURE.md.

License

MIT