MCP server for cross-vendor API/SDK deprecation and breaking-change tracking
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A free, open MCP server for checking whether a vendor API or SDK is active, deprecated, or sunset โ so an agent doing upgrade/maintenance work can check before it breaks, instead of after.
API/SDK deprecations are scattered across changelog pages, RSS feeds (if
you're lucky), and Sunset/Deprecation HTTP headers (if the vendor bothers
implementing RFC 8594). This server
puts a curated, hand-verified answer behind one tool call.
No payment gating, no metering, no billing code of any kind โ this is a plain open MCP server.
One tool, check_deprecation:
status: "unknown" (with a blank source_url) is returned for any
provider/target not in the curated dataset below โ it means "not tracked",
not "confirmed active."
Ten provider APIs/SDKs, each checked against the vendor's own published page
(source_url) on the date in last_verified_at. Data lives in
data/deprecations.json.
| provider | target | status |
|---|---|---|
aws | aws-sdk-js-v2 | sunset |
stripe | sources-api | deprecated |
twilio | programmable-chat | sunset |
github | dependency-graph-sbom-sync | deprecated |
openai | assistants-api | deprecated |
slack | classic-apps | deprecated |
sendgrid | v2-mail-send | deprecated |
shopify | rest-admin-api | deprecated |
auth0 | rules-and-hooks | deprecated |
paypal | nvp-soap-api | deprecated |
Lookups are case-insensitive and also match each record's aliases (e.g.
aws/aws-sdk resolves to aws-sdk-js-v2).
Claude Code (.mcp.json in your project, or claude mcp add):
Any other stdio-based MCP client config follows the same shape: run
node dist/index.js as the server command.
Once connected, an agent calls:
and gets back:
Edit data/deprecations.json directly โ no build step or scraper needed, it's
read at server startup. Each record needs a real source_url you actually
checked and an accurate last_verified_at. When you re-verify a record,
recompute its content_hash too (see below).
Hand-checking ten source_urls every so often doesn't scale, and stale data
is worse than no data. A weekly GitHub Action
(.github/workflows/check-drift.yml)
fetches each record's source_url, hashes the response body (sha256), and
compares it to the content_hash stored on the record at
last_verified_at. If the hash changed, the page changed since it was last
verified โ the record is flagged, not auto-updated. The automation never
writes to data/deprecations.json; a changed page only means "a human or
agent needs to re-verify this record by hand," never an inferred new status.
Wrong auto-inferred status is worse than no automation.
When drift or a fetch failure is detected, the workflow opens (or updates) a
single GitHub issue labeled drift-check summarizing which records need
attention; it closes that issue automatically once a later run comes back
clean.
Run it locally:
Exits 0 if every record's hash still matches, 1 otherwise.
All ten source_urls were fetched with a plain GET (no headless browser, no
bot-protection workaround) when their content_hash baselines were seeded,
and all ten succeeded. If a vendor later adds bot protection or a redirect
that breaks the plain-GET fetch, that record will show up as
fetch_failed in the weekly report rather than being silently skipped.
Known limitation: the AWS blog post, Stripe docs page, and PayPal docs
page (aws/aws-sdk-js-v2, stripe/sources-api, paypal/nvp-soap-api) embed
per-request dynamic content โ a nonce, timestamp, or session token that
changes on every fetch even when the substantive page content hasn't. Their
body hash is therefore not fully stable across requests, and the weekly
check may occasionally flag one of these three as "drifted" even with no
real change. This is disclosed rather than worked around (e.g. by stripping
known-volatile substrings): a false-positive "please go look at this page"
is an acceptable cost for a tool whose entire design principle is to never
guess at a status. A human/agent re-verifying such a flagged record should
expect it may be a false alarm.
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/deprecation-mcp)<a href="https://allmcps.com/mcp/deprecation-mcp"><img src="https://allmcps.com/api/badge/deprecation-mcp?style=directory" alt="Deprecation MCP on AllMCPs" /></a>