mcp-migration-auditor

mcp-migration-auditor is a skill for Claude Code from Abhillashjadhav/AI-PM-essential-skills. It costs 228 tokens per session (1,627 once invoked), scanned A, original, MIT.

A checker for whether Model Context Protocol (MCP) servers will work with the July 28, 2026 specification changes. MCP is a standard for connecting AI assistants to external tools and data.

In plain words
What is it for?
Use it to inspect MCP configuration files, classify local and remote servers, and understand required migration steps for transport and other specification changes.
Why use it?
It shows which configured servers break, degrade, or remain safe, instead of treating every server as affected.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths.

Part of the mcp-migration-auditor plugin — 1 skill shipped together

Good fit Use it to inspect MCP configuration files, classify local and remote servers, and understand required migration steps for transport and other specification changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/abhillashjadhav/ai-pm-essential-skills/mcp-migration-auditor
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Abhillashjadhav/AI-PM-essential-skills --skill mcp-migration-auditor
Clone the repo
git clone --depth 1 https://github.com/Abhillashjadhav/AI-PM-essential-skills

Made for: Claude Code.

Or install mcp-migration-auditor, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-migration-auditor

README.md
[![agentmods](https://agentmods.dev/badge/skills/abhillashjadhav/ai-pm-essential-skills/mcp-migration-auditor/github.svg)](https://agentmods.dev/skills/abhillashjadhav/ai-pm-essential-skills/mcp-migration-auditor)
Your own site
<a href="https://agentmods.dev/skills/abhillashjadhav/ai-pm-essential-skills/mcp-migration-auditor"><img src="https://agentmods.dev/badge/skills/abhillashjadhav/ai-pm-essential-skills/mcp-migration-auditor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-migration-auditor

Your own site · 80×15
<a href="https://agentmods.dev/skills/abhillashjadhav/ai-pm-essential-skills/mcp-migration-auditor"><img src="https://agentmods.dev/badge/skills/abhillashjadhav/ai-pm-essential-skills/mcp-migration-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 228 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,627 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00228 $0.01627
Opus 5 $0.00114 $0.00813
Sonnet 5 $0.00046 $0.00325
Haiku 4.5 $0.00023 $0.00163

Measured 12d ago against content hash 0368ed6f323d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

mcp-migration-auditor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

mcp-migration-auditor/skills/mcp-migration-auditor/SKILL.md · 63 lines

How it starts

The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCP Migration Auditor

Scan MCP server configs against the verified breaking changes in the MCP 2026-07-28 specification and report exactly which servers break, which degrade, and which are safe — with the rule and official source behind every verdict.

The clock: the release candidate locked May 21, 2026; the final specification ships July 28, 2026. Every rule below comes from the official announcement and spec changelog — full quotes and URLs in references/spec-changes.md. If a check isn't in that file, this skill doesn't make it.

Step 1 — Locate configs

Search the project for MCP configs, in this order: .mcp.json, mcp.json, claude_desktop_config.json, mcpServers blocks inside .claude/settings.json / .claude/settings.local.json / other settings files. If none found, ask the user to paste one — never audit an imagined config.

Step 2 — Classify transport per server

  • command-based entries → stdio/local. Per the official announcement, stdio and local transports "operate independently of Streamable HTTP statelessness requirements and session infrastructure changes" — these start at SAFE.
  • url-based entries (HTTP / Streamable HTTP / SSE) → remote. These get the full rule pass.

Step 3 — Apply the verified rules

Rule Evidence to look for Verdict Source
R1 — Protocol session dependency Mcp-Session-Id in headers, session-affinity/sticky-session settings, session-store references for an MCP endpoint BREAKS — header and protocol-level session removed SEP-2567
R2 — Handshake pinning custom client/server code pinned to initialize/initialized; version negotiation done once at connect BREAKS — handshake removed; protocol version, client info, capabilities travel in _meta per request; server/discover replaces capability exchange SEP-2575
R3 — Deprecated capabilities server uses roots, sampling, or logging (config flags, docs, or user confirmation) DEGRADED — still works in this release and for ≥12 months under the lifecycle policy, but on the deprecation clock SEP-2577, SEP-2596
R4 — Experimental Tasks server or client shipped against the 2025-11-25 experimental Tasks API BREAKS — Tasks moved to an official extension with a new lifecycle; tasks/list removed SEP-2663
R5 — OAuth patterns remote server using OAuth: no iss validation, credentials assumed portable across authorization servers, missing application_type in dynamic client registration DEGRADED — action required for compliance: validate iss (RFC 9207), re-register credentials (issuer-bound), declare application_type SEP-2468, SEP-2352, SEP-837
R6 — Plain stdio, none of the above command-based, no deprecated capabilities, no Tasks SAFE — say so plainly official announcement, "Unaffected Deployments"

Read the full file on GitHub · 63 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 63 lines · 228 tokens per session scan A 0368ed6f323d

Subscribe to this mod's changes

mcp-migration-auditor is a skill published in the GitHub repository Abhillashjadhav/AI-PM-essential-skills (4 stars, last pushed 11d ago), licensed MIT. It adds 228 tokens to every session and 1,627 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.