breaking-changes-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@breaking-changes-mcpShow breaking changes from react 18.2.0 to 19"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
breaking-changes-mcp
Stop your coding agent from hallucinating dependency migrations.
An MCP server that gives Claude, Cursor, and any MCP client accurate, source-grounded breaking-change briefings for any npm package — read straight from the real GitHub release notes and CHANGELOG, not from the model's stale training data.
LLMs are great at writing code and terrible at remembering exactly what changed between react@18 and react@19, or next@14 and next@16. That's where upgrades break. This server closes the gap: point it at a package and a version range, and the agent gets the actual breaking changes before it touches your code.
Why this exists
Tools like Context7 inject current docs. But the most dangerous moment for an agent is a version bump, and nobody serves the delta between two versions. breaking-changes-mcp is that missing piece.
Related MCP server: upgrade-pilot-mcp
Tools
Tool | What it does |
| The headline tool. Returns only the breaking changes for a package between two versions, grouped per version, newest first. Reads GitHub Releases, falls back to |
| The full release notes (features, fixes, deprecations) across a version range — when breaking-only isn't enough. |
| Published versions + release dates, newest first — to discover valid |
Every tool works on the public npm registry + GitHub with no API key required. Set GITHUB_TOKEN to raise GitHub's rate limit from 60 to 5000 requests/hour.
Quick start
npx breaking-changes-mcpClaude Code
claude mcp add breaking-changes -- npx -y breaking-changes-mcp
# optional: higher GitHub rate limit
claude mcp add breaking-changes -e GITHUB_TOKEN=ghp_xxx -- npx -y breaking-changes-mcpClaude Desktop / Cursor / Windsurf / any MCP client
{
"mcpServers": {
"breaking-changes": {
"command": "npx",
"args": ["-y", "breaking-changes-mcp"],
"env": { "GITHUB_TOKEN": "ghp_xxx_optional" }
}
}
}Example prompts
"I'm on react 18.2.0 and want to go to 19. Use breaking-changes to tell me exactly what will break."
"Before you upgrade next in this repo, check the breaking changes between the installed version and latest."
"Give me the full changelog for @tanstack/react-query from 4.0.0 to 5.0.0."
Config
Env var | Default | Purpose |
| — | Personal access token to raise GitHub API limits (60→5000/hr). Read-only, no scopes needed for public repos. |
|
| Override for private/mirror registries. |
How it works
package + from..to
│
├─ npm registry ──► all versions, dates, repository URL
├─ versions in (from, to]
├─ GitHub Releases ──► release bodies for those versions
│ └─ fallback: raw CHANGELOG.md sliced between version headers
└─ extract "### Breaking…" sections + "BREAKING CHANGE" lines ──► grouped briefingDevelop
npm install
npm run build
node dist/index.js # speaks MCP over stdioCaveats
Quality of output depends on the maintainer documenting breaking changes. If a project buries them in prose,
breaking_changes_betweensays so and points you tochangelog_between.Monorepo tags (
pkg@1.2.3) and prefixed tags (v1.2.3,release-1.2.3) are handled; exotic tag schemes may miss.
License
MIT © Anicodeth
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceChecks npm and PyPI packages for outdated versions, deprecation status, and breaking changes with cited sources, enabling AI agents to verify dependency freshness.Last updated115ISC
- Alicense-qualityDmaintenanceEnables AI agents to safely upgrade JavaScript and TypeScript projects through dependency analysis, upgrade path detection, breaking change identification, codemod application, and PR summary generation.Last updated16MIT
- Flicense-qualityDmaintenanceEnables AI agents to monitor web documentation for changes, perform semantic search with RAG, and analyze breaking changes in APIs.Last updated9
- FlicenseAqualityAmaintenanceBreaking-change diffs for npm packages, served over REST and MCP, so coding agents stop writing code against outdated API knowledge.Last updated2
Related MCP Connectors
Package intelligence for AI agents across npm, PyPI, crates.io and deps.dev. No API keys.
npm, PyPI & crates.io intel for AI agents: versions, popularity, deps, health. No API keys.
Provide AI-powered real-time analysis and intelligence on NPM packages, including security, depend…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Anicodeth/breaking-changes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server