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

@assurly/mcp-server

v1.0.2

Published

MCP server exposing Assurly Ship Gate scans to AI agents — a pre-deploy ship gate Cursor and Claude Code call before shipping

Downloads

490

Readme

@assurly/mcp-server

A pre-deploy ship gate your AI agent calls before shipping. A local stdio MCP server that lets Cursor, Claude Code, and other MCP clients scan a Next.js + Supabase + Stripe + Vercel project and get one trusted verdict — blockers to fix, warnings to review — before the agent ships to production.

The agent that wrote your app can now check it: write code → assurly_scan_path → fix blockers → re-scan until READY TO SHIP.

Everything runs locally over stdio. Your source code is never uploaded — the tools mirror the assurly scan pipeline exactly (allRules + detector + Ship Gate report), so an agent scan matches the CLI on the same project.

Tools

| Tool | Description | | ---------------------- | ------------------------------------------ | | assurly_scan_path | Scan a local project directory | | assurly_scan_files | Scan in-memory { path, content }[] files | | assurly_explain_rule | Explain a rule id and how to fix it |

Install (npm)

Run the server directly with npx — no global install needed:

npx -y @assurly/mcp-server

Cursor (.cursor/mcp.json)

Add this server next to your other MCP entries:

{
  "mcpServers": {
    "assurly": {
      "command": "npx",
      "args": ["-y", "@assurly/mcp-server"]
    }
  }
}

After saving, restart Cursor (or reload MCP) and confirm the three assurly_* tools appear.

Claude Code

From your project directory:

claude mcp add assurly -- npx -y @assurly/mcp-server

Typical agent loop

  1. Agent writes or edits code.
  2. Call assurly_scan_path or assurly_scan_files.
  3. Read blockers from the Ship Gate summary.
  4. Call assurly_explain_rule for remediation hints.
  5. Fix issues and re-scan until the verdict is READY TO SHIP.

Build from source (contributors)

If you are working on this repository directly, build and point your MCP client at the local output:

From the repo root:

npm run build -w assurly
npm run build -w @assurly/mcp-server

Run (stdio):

node packages/mcp-server/dist/index.js

Cursor (.cursor/mcp.json) with an absolute path to your clone:

{
  "mcpServers": {
    "assurly": {
      "command": "node",
      "args": ["/absolute/path/to/assurly/packages/mcp-server/dist/index.js"]
    }
  }
}

Claude Code:

claude mcp add assurly -- node /absolute/path/to/assurly/packages/mcp-server/dist/index.js

Replace /absolute/path/to/assurly with the path to this repository on your machine.