mendapi
OfficialMonitors breaking changes in the Cloudflare API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Firebase API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the GitHub API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in Google APIs and SDKs, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the HubSpot API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in Meta APIs and SDKs, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Notion API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the OpenAI API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the PayPal API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Salesforce API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the SendGrid API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Shopify API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Slack API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Stripe API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Supabase API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Twilio API and SDK, scans the codebase for affected code, and provides migration fixes.
Monitors breaking changes in the Vercel API and SDK, scans the codebase for affected code, and provides migration fixes.
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., "@mendapiscan the current repo for upstream breaking changes and show impact"
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.
mendapi
Dependabot, but for every API you depend on. We watch your upstream API providers for breaking changes, scan your codebase for impact, and open the fix PR before your integration breaks.
30 seconds to your first result
# In any repo — zero config, zero npm dependencies, nothing leaves your machine
npx mendapi scanYou get every upstream breaking change that actually hits your code — file, line, and symbol — scored for confidence. Then npx mendapi fix drafts the migration as a reviewable diff.
Using an AI coding agent? One line plugs mendapi into Claude Code as an MCP server (Cursor and every other MCP client work too — details below):
claude mcp add mendapi -- npx mendapi mcpRequires Node.js 22.13 or newer. Everything runs locally: the scanner, fixer, and review CLIs contain no network code at all.
Related MCP server: SYKE
Security model (read this first)
This tool is designed for teams that cannot let source code leave their machines. The security model is the product, not a FAQ entry:
Your code never leaves your machine. The scanner runs locally or in your CI. Nothing is uploaded by default — there is no network code in the scanner, fixer, or review CLIs at all (mechanically enforced by our test suite, which fails the build if any network primitive appears in those files).
Metadata-only reporting, opt-in only. If you ever choose to report results to a hosted dashboard, the payload builder (
payload.js) is whitelist-constructed: provider names, SDK versions, file basenames, line numbers, and symbol names only. Code snippets are structurally impossible to include — the field does not exist in the payload schema. Reporting requires an explicit--report-toflag; it is never on by default.Secrets are redacted in depth. Fifteen secret patterns (OpenAI, Stripe, AWS, GitHub, Slack, JWT, bearer tokens, generic key assignments, and more) are scrubbed from every field of any outbound payload, and a pre-transmission assertion throws if a forbidden key or unredacted secret survives.
Auditable by design. The CLI is open source so your security team can verify, line by line, exactly what is read and what (if anything) is sent.
Minimal GitHub permissions. Fix PRs use a GitHub App scoped to
contents:read+pull_requests:writeon repos you choose. Never admin.Self-hosting available. Enterprise plans run the entire stack — change feed included — inside your firewall.
What it does
Three components form a closed loop:
Component | Role | Where it runs |
Watcher | Monitors 20 major API providers (Stripe, OpenAI, Anthropic, Shopify, Twilio, Slack, GitHub, Google, AWS, Plaid, PayPal, Meta, Cloudflare, Vercel, Supabase, Firebase, Notion, HubSpot, Salesforce, SendGrid) via SDK release feeds and official developer changelogs. Classifies each change (breaking / deprecation / additive / fix / docs-only) into a structured SQLite database. | Our infrastructure (or yours, self-hosted) |
Scanner | Reads the change database, detects which providers your repo actually uses (SDK imports, API hosts, env vars — context-aware, not naive grep), and pinpoints the exact files, lines, and symbols affected by each breaking change. Three-tier confidence scoring plus an optional LLM semantic review pass keeps false positives near zero. | Locally, on your machine or CI |
Fixer | Applies deterministic migration rule packs (e.g. | Locally by default; hosted for paid plans |
Quickstart
Requires Node.js 22.13 or newer (uses built-in node:sqlite). Zero npm dependencies.
# Fetch the latest API change feed (the only command that touches the network)
mendapi sync
# Scan the current repo against the breaking-change database (zero config)
mendapi scan
# Or scan a specific repo and save the report
mendapi scan --repo /path/to/your/repo --out impact.json
# Review medium-confidence findings (optional LLM semantic pass)
mendapi review impact.json --pending
# Preview fixes (dry-run: writes a unified diff, changes nothing)
mendapi fix --from-report impact.json
# Create a fix branch + commit + PR-ready description (local only;
# --push is required to actually push, and is never implied)
mendapi pr --repo /path/to/your/repo --from-report impact.jsonRunning from a checkout? node app/cli.js <command> works identically.
What a fix looks like
This is real output — the exact diff our test suite pins, byte for byte, for the openai-node v3 → v4 migration pack. Note the two lines that mention the legacy calls inside a string and a template literal: the codemod leaves both untouched, because rules anchor on call positions in the syntax tree, not on text patterns.
--- a/lib/ai.js
+++ b/lib/ai.js
@@ -1,28 +1,27 @@
// Demo service using the legacy openai-node v3 SDK (pre-v4 breaking change).
// Docs note: openai.createChatCompletion({...}) was the v3 entry point.
-const { Configuration, OpenAIApi } = require('openai');
+const OpenAI = require('openai');
// This string mentions the legacy call and must never be rewritten by the fixer:
const LEGACY_HINT = 'if you still call openai.createChatCompletion( upgrade to v4';
const AUDIT_LOG_LINE = `migrating away from .createEmbedding( for tenant`;
-const configuration = new Configuration({ apiKey: process.env.OPENAI_API_KEY });
-const openai = new OpenAIApi(configuration);
+const openai = new OpenAI({ apiKey: process.env.OPENAI_API_KEY });
async function summarize(text) {
- const response = await openai.createChatCompletion({
+ const response = await openai.chat.completions.create({
model: 'gpt-4',
messages: [{ role: 'user', content: `Summarize: ${text}` }],
});
- return response.data.choices[0].message.content;
+ return response.choices[0].message.content;
}
async function embed(text) {
- const response = await openai.createEmbedding({
+ const response = await openai.embeddings.create({
model: 'text-embedding-ada-002',
input: text,
});
- return response.data.data[0].embedding;
+ return response.data[0].embedding;
}
module.exports = { summarize, embed };Every migration pack ships with a pinned diff like this one; the build fails if a pack's output drifts from its gold evidence. Six more, embedded with the same byte-match guarantee, are on the provider guides: OpenAI, AWS, Cloudflare, PayPal, Vercel, Stripe, Shopify.
Use it from your AI coding agent (MCP)
mendapi mcp starts a Model Context Protocol server on stdio — offline-first, zero network: every tool call runs the local CLIs against the local SQLite database only, and the server ships with zero npm dependencies. It speaks the current MCP revision (2026-07-28, per-request _meta version negotiation + server/discover) and keeps full backward compatibility with older clients that use the initialize handshake (2025-06-18 / 2025-03-26) — a dual-era server, because a tool that repairs breaking changes should not ship one.
Claude Code (one line):
claude mcp add mendapi -- npx mendapi mcpCursor (or any JSON-configured MCP client) — add to .cursor/mcp.json:
{
"mcpServers": {
"mendapi": { "command": "npx", "args": ["mendapi", "mcp"] }
}
}Tools exposed: scan, deps, fix, revalidate, changes — the same schema_version-stamped JSON as the CLI --json flags. See the For AI agents docs page for the full tool catalog and an autonomous-maintenance recipe.
Why precision matters
Alert fatigue kills tools like this. Our scanner gates every finding through:
Source-aware evidence rules — an SDK release only affects repos that import that SDK; a changelog entry about an API endpoint affects anyone calling that host.
Sub-API filtering for monorepo providers (Google, AWS) — a
youtuberelease does not page the team that only uses S3.Identifier-boundary symbol matching —
getRnever matchesgetRelatedArticles.Context-aware env-var detection —
process.env.STRIPE_KEYcounts; a regex constant namedMETA_REdoes not.
Dogfooding across three production repos: the current pipeline reports zero false positives where an earlier naive version produced 27.
Measured in public
We benchmark the change database against real provider spec corpora and publish the full accounting — every headline number is recomputed from archived evidence by the site's build gates, so the reports cannot drift from the data:
What 47 Stripe API versions taught us about breaking-change detection — 47 consecutive spec pairs, head-to-head with oasdiff, zero unexplained gaps.
Three more providers, 49 spec pairs, zero unexplained gaps — the same audit across Twilio, PayPal, and Vercel.
20 Twilio spec pairs: 358 findings from one engine, 142 from ours, and every disagreement named — why two engines disagree by 2.5x, with every divergence accounted for.
11 Vercel spec pairs: a real 12-endpoint removal, and the release notes that cried breaking — the changelog got it wrong in both directions; the wire did not.
136 raw removals, 17 real ones: what a spec diff over-reports — the curation rules that keep alert fatigue out of the feed.
821 OpenAI spec changes, 3 that can break a client: the honest negative — the value of a tool that tells you when you are fine.
Status
Published on npm as mendapi (v0.5.5). Early release — the change database and migration pack registry grow daily; interfaces may still shift before 1.0.
License
AGPL-3.0-only for the CLI (see LICENSE). Chosen so security teams can audit every line that reads code or builds a payload, and so hosted forks must share their changes.
This server cannot be installed
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
- AlicenseAqualityDmaintenanceMCP server that detects semantic (non-textual) merge conflicts between Git branches using AST-level analysis. Catches incompatible changes that Git merges cleanly — signature changes, removed exports, parameter changes, interface breaks, and cross-file dependency conflicts.Last updated433MIT
- Alicense-qualityDmaintenanceAI code impact analysis MCP server that monitors file changes, maps dependency graphs, detects cascading breakage, and gates builds before damage spreads.Last updated2652Elastic 2.0
- Alicense-qualityDmaintenanceMCP server that analyzes TypeScript/Prisma projects, builds dependency graphs, and protects against dangerous modifications and silent regressions.Last updated71MIT
- Alicense-qualityBmaintenanceLocal-first code intelligence and safety layer for AI coding agents. MCP server exposes dependency graph, impact analysis, and AST-compressed repo context, backed by typed local memory, patch-scope safety gates, and git-independent transaction rollback.Last updatedMIT
Related MCP Connectors
Monitor MCP servers, API contracts and AI outputs for schema drift. Alerts on breaking changes.
A MCP server built for developers enabling Git based project management with project and personal…
An MCP server that gives your AI access to the source code and docs of all public github repos
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/mendapi/mendapi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server