deprecation-mcp
An MCP server that checks whether a vendor API or SDK is active, deprecated, or sunset, using a curated dataset. Enables agents to verify deprecation status before upgrade/maintenance work.
README
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."
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 |
|---|---|---|
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).
Run it
npm install
npm run build
npm start # starts the stdio MCP server
Add 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 logic
Updating 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. When you re-verify a record,
recompute its content_hash too (see below).
Drift detection
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:
npm run build
npm run check-drift
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.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。