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

@akshay7273/mcp-ready

v0.3.0

Published

Check whether your MCP server is ready for the MCP 2026-07-28 spec revision — breaking changes, deprecated features, migration hints.

Readme

mcp-ready ✈️

CI

Is your MCP server ready for the 2026-07-28 spec? Find breaking changes and deprecated features — before they find you.

🚧 v0.3 release candidate — SARIF code scanning, checked-in baselines, scoped suppressions, and cross-language validation are complete.

The Model Context Protocol's 2026-07-28 revision is its largest ever: a stateless core, a new server/discover capability-discovery method, deprecated roots/sampling/logging, new SDK major versions, and changed error handling. mcp-ready scans your MCP server repo — TypeScript, Python, Go, or C# — and tells you exactly what needs attention. In seconds. Zero config.

Quick start

npx @akshay7273/mcp-ready .

Installed globally? The command is just mcp-ready.

That's it. Point it at any MCP server repo and read the report.

CI and machine-readable output

# JSON to stdout
npx @akshay7273/mcp-ready . --format json

# Write a Markdown report and fail on breaking or deprecated findings
npx @akshay7273/mcp-ready . --format markdown --output mcp-ready.md --fail-on deprecated

# Produce SARIF 2.1.0 for GitHub code scanning
npx @akshay7273/mcp-ready . --format sarif --output mcp-ready.sarif --fail-on none

--fail-on accepts breaking (default), deprecated, or none. JSON reports use schema version 1 and include detected SDKs, summary counts, protocol applicability, confidence, and all remediation metadata.

SARIF reports map findings to source locations and stable rule descriptors for code-scanning systems. See the SARIF integration guide for a complete GitHub workflow.

Existing repositories can check in a reviewed baseline while keeping new findings actionable. Suppressions require an exact rule/file scope and a written reason. See the baseline and suppression guide.

Use in CI (GitHub Action)

- uses: Akshay7273/mcp-ready@main
  with:
    path: "."

Fails the build when 🔴 breaking findings are detected (exit code 1).

What it checks

| Check | Severity | Why it matters | | --- | --- | --- | | Legacy initialize-only handshake assumptions | 🔴 breaking | The new revision introduces server/discover and a stateless core | | Literal -32002 error-code matching | 🔴 breaking | Resource-not-found is now standard JSON-RPC -32602 | | Monolithic @modelcontextprotocol/sdk (TypeScript) | 🔴 breaking | v2 splits into @modelcontextprotocol/server / client / core (Node 20+, ESM and CommonJS) | | Python mcp v1 API usage (FastMCP) | 🔴 breaking | v2 renames FastMCPMCPServer | | Roots usage | 🟡 deprecated | Replace with tool parameters, resource URIs, or server config | | Sampling usage | 🟡 deprecated | Deprecated under the new feature lifecycle policy | | Logging capability usage | 🟡 deprecated | Use stderr (stdio) or OpenTelemetry instead | | Python dependency crossing the v2 boundary | 🟡 deprecated | Pin mcp>=1.29,<2 or migrate explicitly to stable v2 | | JSON Schema 2020-12 opportunities | 🔵 info | Tool schemas can now use oneOf/anyOf/allOf, $ref, conditionals |

How it works

Pure static analysis: manifest parsing + source pattern matching. Nothing is executed, nothing leaves your machine, no network calls.

See the rule catalog for stable IDs and confidence levels, and architecture for the scan pipeline and security boundary. The validation log records reproducible scans against real MCP repositories and the false-positive fixes they produced.

Fixing what it finds

Every finding links to the relevant migration doc. For TypeScript, the official codemod does the mechanical parts:

npx @modelcontextprotocol/codemod@latest v1-to-v2 .

See also the official 2026-07-28 changelog and migration guides: Upgrading TypeScript SDK v1 to v2 · Adopting the 2026-07-28 revision · Python migration guide

mcp-ready complements these tools — it tells you what needs attention across all four SDK languages; they help you fix it.

Roadmap

  • [x] SDK detection (TS / Python / Go / C#)
  • [x] Initial rule engine (v0.1)
  • [x] Markdown report output (v0.1)
  • [x] Final 2026-07-28 rule pack (v0.2)
  • [x] GitHub Action job summaries (v0.3)
  • [x] SARIF output for code scanning (v0.3)
  • [x] Checked-in baselines and scoped suppressions (v0.3)
  • [x] JSON output for CI pipelines (v0.2)

Contributing

Issues and PRs welcome — especially real-world repos where the scanner gets it wrong. False-positive reports are gold. See CONTRIBUTING.md.

License

MIT