deprecation-mcp
Allows checking the deprecation status of Auth0's Rules and Hooks, including replacement and migration information.
Allows checking the deprecation status of GitHub's Dependency Graph SBOM sync API, including sunset dates and migration URLs.
Allows checking the deprecation status of OpenAI's Assistants API, including replacement and migration guidance.
Allows checking the deprecation status of PayPal's NVP/SOAP API, including sunset dates and migration paths.
Allows checking the deprecation status of SendGrid's v2 Mail Send API, including replacement and migration information.
Allows checking the deprecation status of Shopify's REST Admin API, including replacement and migration URLs.
Allows checking the deprecation status of Slack's Classic Apps, including sunset dates and migration guidance.
Allows checking the deprecation status of Stripe's Sources API, including replacement and migration information.
Allows checking the deprecation status of Twilio's Programmable Chat, including sunset dates and migration paths.
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., "@deprecation-mcpCheck if AWS SDK for JavaScript v2 is sunset."
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.
deprecation-mcp
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.
What it exposes
One tool, check_deprecation:
check_deprecation(provider: string, target: string) -> {
status: "active" | "deprecated" | "sunset" | "unknown",
deprecated_on: string | null,
sunset_on: string | null,
replacement: string | null,
migration_url: string | null,
source_url: string,
last_verified_at: string
}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."
Related MCP server: docpilot-mcp
Curated dataset
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 |
|
| sunset |
|
| deprecated |
|
| sunset |
|
| deprecated |
|
| deprecated |
|
| deprecated |
|
| deprecated |
|
| deprecated |
|
| deprecated |
|
| deprecated |
Lookups are case-insensitive and also match each record's aliases (e.g.
aws/aws-sdk resolves to aws-sdk-js-v2).
Run it
npm install
npm run build
npm start # starts the stdio MCP serverAdd to an MCP client
Claude Code (.mcp.json in your project, or claude mcp add):
{
"mcpServers": {
"deprecation": {
"command": "node",
"args": ["/absolute/path/to/deprecation-mcp/dist/index.js"]
}
}
}Any other stdio-based MCP client config follows the same shape: run
node dist/index.js as the server command.
Worked example
Once connected, an agent calls:
{
"name": "check_deprecation",
"arguments": { "provider": "aws", "target": "aws-sdk-js-v2" }
}and gets back:
{
"status": "sunset",
"deprecated_on": "2024-09-08",
"sunset_on": "2025-09-08",
"replacement": "AWS SDK for JavaScript v3",
"migration_url": "https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/migrating-to-v3.html",
"source_url": "https://aws.amazon.com/blogs/developer/announcing-end-of-support-for-aws-sdk-for-javascript-v2/",
"last_verified_at": "2026-08-08"
}Tests
npm test # builds, then runs node:test against the lookup logicUpdating the dataset
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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that serves documentation and enables AI-powered search, Q\&A, and document analysis for developer tools and guides.Last updated54MIT
- Alicense-qualityBmaintenanceAn MCP server that provides tools to fetch live, version-accurate documentation, changelogs, examples, and method signatures for npm and PyPI packages, preventing AI coding agents from hallucinating stale APIs.Last updated7ISC
- Alicense-qualityCmaintenanceMCP server that exposes structured World of Warcraft API data (functions, deprecated replacements, enums, events, widget methods) to AI agents, enabling querying and exploration of WoW API without wiki parsing.Last updated1512MIT
- Alicense-qualityCmaintenanceMCP server that checks npm and PyPI package health, providing maintenance signals, version info, CVE counts, and alternative suggestions.Last updatedMIT
Related MCP Connectors
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
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/tsvillain/deprecation-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server