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

sysspec-mcp

v1.0.3

Published

Read-only MCP access to versioned system specs: AsyncAPI, OpenAPI, ODCS data contracts and Gherkin acceptance criteria.

Readme

sysspec-mcp

Read-only MCP access to a sysspec spec tree: AsyncAPI, OpenAPI, ODCS data contracts and Gherkin acceptance criteria, served as seven narrow tools (list_services, get_service, get_artifact, get_message_schema, get_acceptance_criteria, trace_channel, search_specs). One TypeScript implementation behind every route in: stdio for local clients, stateless streamable HTTP for a hosted URL. There is no write tool, and reads are confined to artifacts a service manifest declares.

The server is a generic engine — the specs are per-repo data, pointed at with SPECS_DIR.

Run it locally

# stdio (what .mcp.json and the Claude plugin wire up)
SPECS_DIR=./specs npx -y sysspec-mcp

# streamable HTTP on a port
SPECS_DIR=./specs npx -y sysspec-mcp --transport http --host 0.0.0.0 --port 8080

Env equivalents (container-friendly): SYSSPEC_MCP_TRANSPORT, HOST, PORT, SYSSPEC_MCP_PATH, SYSSPEC_MCP_ALLOWED_HOSTS. See --help. HTTP mode is stateless — no session affinity needed, so it works behind any load balancer or scale-to-zero platform. The MCP endpoint is /mcp; / answers with a small info document.

Serve it over a URL

The Dockerfile packages the server with this repo's specs. Build from the repo root:

docker build -f mcp/Dockerfile -t sysspec-mcp .
docker run --rm -p 8080:8080 sysspec-mcp

CI pushes this image to ghcr.io/hungovercoders/sysspec-mcp (:latest and :<commit sha>) on every push to main, using only the built-in GITHUB_TOKEN — so the image stays current with the specs without any host being wired into the repo. Deployment is then just pointing a host at the image; nothing here depends on which one:

  • Any Docker host / VPS / Coolify — deploy the GHCR image, or point Coolify at this repo with mcp/Dockerfile as the Dockerfile (build context: repo root) for build-on-push.
  • AWS — App Runner or ECS pulling ghcr.io/hungovercoders/sysspec-mcp, port 8080.
  • Cloudflare — Containers can run the same image (paid plan), or use the optional free-tier Worker adapter: cd mcp && npx wrangler deploy --config adapters/cloudflare/wrangler.jsonc (adapters/cloudflare/ — a thin fetch entry over the same server, specs bundled at deploy time; nothing else depends on it).

Connect a client to whichever URL results:

claude mcp add sysspec --scope project --transport http https://<your-deploy>/mcp

Hardening

The tools are read-only and confined to declared artifacts, so the blast radius of an open endpoint is "someone reads the specs". If the specs are not public:

  • put an authenticating proxy (Cloudflare Access, an ALB with OIDC, ...) in front of the URL;
  • set SYSSPEC_MCP_ALLOWED_HOSTS=mcp.example.com to reject requests carrying any other Host header (DNS-rebinding protection).

Development

cd mcp
npm install
npm test            # tool contract (fs + bundled sources), stdio + http e2e
npm run build       # dist/ — committed, the plugin runs it directly

dist/stdio.mjs is a dependency-free bundle committed to the repo so the Claude plugin can run the server from a marketplace checkout with nothing but node. task check:mcp:dist fails CI when it is stale — rebuild and commit after changing src/.

Behavioral contract notes live in src/core.ts; the test suite in test/tools.test.ts pins the tool contract and runs against this repo's real specs/ tree.