Claude Skill MCP Checker: Deterministic Audit of Breaking 2026-07-28 Changes

With MCP's 2026-07-28 revision arriving, the protocol's biggest breaking change ever — stateless transport, no more Mcp-Session-Id, OAuth 2.1 — a lot of public servers are quietly broken. Rather than rely on LLM-based guesswork, one developer built a deterministic checker that produces the same output for the same input and cites the exact spec page for every finding.
How the Checker Works
The core is a pure rule engine with 7 rules, exposed in two ways:
- Web demo — paste an endpoint, get a graded report. No install, nothing stored.
- Claude Skill — a
SKILL.mdplus a bundled, dependency-free checker. In Claude Code it handles diagnosis and migration, but you can unzip it and run the checker with any agent (Codex, Cursor).
The repo (MIT, ~86 tests) is on GitHub. There's even a README section called “A rule that was wrong,” with tests pinning both mistakes so they can't recur.
What the Author Learned
One rule was confidently wrong: it told users to upgrade the SDK to ^2 — a version that doesn't exist (it stops at 1.30.0). After deleting it with the note “no v2 exists,” it turned out v2 does exist as a package rename. The lesson: “this doesn't exist” and “you looked in the wrong place” produce identical evidence — a rename looks exactly like an absence. Deterministic isn't the same as correct.
That failure mode shows up everywhere agents write code: confident, plausible, internally consistent claims that just aren't true. The fix isn't to “trust less” — it's to make claims checkable, then actually check them.
Who It's For
Anyone running MCP servers or migrating to the 2026-07-28 spec, plus developers building agentic tools that need their output verified against spec.
📖 Read the full source: r/ClaudeAI
👀 See Also

Portable Mind Format (PMF): Provider-Agnostic Agent Specification with 15 Open-Source Agents
The Portable Mind Format (PMF) is a JSON-based specification for defining AI agent identities that can run across multiple models and providers, including Claude, GPT-4, Gemini, DeepSeek, and local models via Ollama. It includes 15 MIT-licensed production agents and converters for Claude Code, Cursor, GitHub Copilot, and Gemini CLI.

sourcecode: Open-Source CLI to Compress Large Java/Spring Monorepos for Claude
sourcecode CLI reduces a ~4k-file Java/Spring monorepo from ~3M tokens to 1.7k tokens (compact mode). Currently focuses on context compression, git hotspot detection, and symbol lookup.

Why Codex Still Beats Claude Code for Complex Python Monoliths
A senior developer compares Codex vs Claude Code on a production Python monolith with mixed architectural layers. Codex wins for back-end work due to better planning, code reuse, and harness-engineering adherence.

NGX-OS: Network OS Built for AI with eBPF and MCP Integration
NGX-OS is a network operating system designed from the ground up for AI integration, using eBPF for real-time telemetry and MCP for direct LLM access to network state data without translation layers.