@weiseer/api-changelog-mcp
Provides real-time monitoring of breaking changes and version updates for the Google GenAI SDK.
Provides real-time monitoring of breaking changes and version updates for the LangChain SDK.
Provides real-time monitoring of breaking changes and version updates for the Next.js SDK.
Provides real-time monitoring of breaking changes and version updates for the Ollama SDK.
Provides real-time monitoring of breaking changes and version updates for the OpenAI SDK.
Provides real-time monitoring of breaking changes and version updates for the React SDK.
Provides real-time monitoring of breaking changes and version updates for the Replicate SDK.
Provides real-time monitoring of breaking changes and version updates for the Vercel AI SDK.
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., "@@weiseer/api-changelog-mcpList all tracked packages with latest versions and breaking changes."
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.
@weiseer/api-changelog-mcp
SDK breaking-change tracker as a stdio MCP server.
Probe P-004 by weiseer.
What it does
Tracks latest version + breaking changes for SDKs AI agents depend on (Anthropic, OpenAI, Google GenAI, MCP SDK, LangChain, LlamaIndex, Mistral, Cohere, Vercel AI, Next.js, React, HuggingFace, Replicate, Ollama).
Your agent can:
list_tracked— packages we track + latest version + 30d breaking-change countget_package— full record with recent breaking events + GitHub release URLget_recent_breaking— breaking changes across all packages, filterablecheck_version— "I'm on v X — am I behind, and what breaks if I upgrade?"
Related MCP server: package-version-check-mcp
Why use this instead of your agent scraping GitHub releases
Agent DIY | api-changelog | |
Releases to fetch | 18 GitHub repo release feeds | 1 MCP call |
Token cost | $0.06-0.20 | $0 free / $0.00005 paid |
Latency | 5-15 seconds | <100ms |
Breaking-change classification | LLM-classified per call | Pre-classified once |
Install
npm install -g @weiseer/api-changelog-mcpUse with Claude Desktop / Cursor / Cline / Continue / Windsurf
{
"mcpServers": {
"api-changelog": {
"command": "npx",
"args": ["-y", "@weiseer/api-changelog-mcp"]
}
}
}License
Apache-2.0
Available Tools
4 toolscheck_versionB
Given a package + version, return breaking changes since. Saves agents from inspecting changelogs.
| Name | Required | Description | Default |
|---|---|---|---|
| package_id | Yes | ||
| current_version | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only mentions returning breaking changes, which suggests a read operation, but it does not disclose potential side effects, authentication requirements, rate limits, or what happens if the package or version is not found.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with no wasted words. It front-loads the core functionality and provides a practical benefit statement.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations, no output schema, and limited parameter info, the description is too brief. It does not cover error handling, return format, or edge cases, leaving agents with significant gaps for safe invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description mentions 'package + version' but does not explain the parameter names 'package_id' and 'current_version', nor their expected formats (e.g., exact version string, package identifier). With 0% schema description coverage, the description adds only vague context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('return breaking changes since') and the resource ('package + version'). It distinguishes itself from siblings like 'list_tracked' and 'get_package' by focusing on breaking changes for a specific package version.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage as an alternative to inspecting changelogs ('Saves agents from inspecting changelogs'), but it does not explicitly state when to use this tool versus siblings like 'get_recent_breaking'. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_packageA
Full record for one tracked package — latest version, recent breaking events, source URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| package_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits. It mentions what the record contains but does not disclose whether it is read-only, any authentication requirements, or error handling (e.g., what happens if the package is not tracked).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is direct and efficient. It conveys the tool's purpose without extraneous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema), the description covers the main output aspects. However, it could mention error cases or the exact response structure, but it is largely adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter, package_id, has no schema description (0% coverage). The description adds no detail about its format, expected values, or examples. It relies solely on the parameter name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it retrieves the full record for one tracked package, including latest version, recent breaking events, and source URLs. This distinguishes it from siblings like list_tracked (listing) and get_recent_breaking (breaking events only).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies it is for getting a single package's full record, but it does not explicitly state when to use this tool versus alternatives like check_version or list_tracked. No when-not-to-use or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recent_breakingB
Recent breaking changes across all tracked packages. Filter by days/ecosystem.
| Name | Required | Description | Default |
|---|---|---|---|
| ecosystem | No | ||
| since_days | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It only states the basic function (get recent breaking changes) without disclosing behavioral traits such as read-only nature, aggregation scope, pagination, or what constitutes a 'breaking change'. The description is minimal and does not add valuable behavioral context beyond the tool's name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loaded with the core purpose and filtering hint. It is concise and free of unnecessary words, but could be improved by structuring the filtering options more clearly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has two parameters, no output schema, and no annotations, the description is insufficient. It does not explain the return format (e.g., list of changes with package, version, date), pagination, or any limitations. The agent lacks context to understand the full behavior and output structure.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description only says 'Filter by days/ecosystem', which loosely matches the two parameters but provides no specifics on valid ecosystem values or the exact meaning of since_days. The agent is left without guidance on allowed inputs or format, adding marginal value over the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Recent breaking changes across all tracked packages' with filtering options, distinguishing this aggregation tool from sibling tools like list_tracked (which lists packages), get_package (details for a package), and check_version (specific version check). The verb 'get' with the resource 'recent breaking' is specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description implies usage for viewing breaking changes across all packages and filtering by days or ecosystem, but does not explicitly guide when to use this tool versus siblings like get_package or check_version for package-level details. Usage context is implied but lacks exclusions or alternative recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_trackedA
List packages we track with latest version + breaking-change counts.
| Name | Required | Description | Default |
|---|---|---|---|
| ecosystem | No | e.g. npm, pypi, cargo |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It clearly states this is a read operation that returns version and breaking-change counts, which is transparent. However, it does not disclose potential details like authentication, rate limits, or side effects, though those are likely minimal for a list tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: one sentence of 10 words with no wasted words. It is front-loaded with the action and resource. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (1 optional parameter, no output schema, no nested objects), the description is fairly complete. It states the action and outputs. It could be slightly improved by clarifying that the ecosystem parameter filters results, but this is inferred. No mention of pagination or ordering, but likely not needed for a simple list.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the single optional parameter 'ecosystem', and the schema description already explains it with examples. The tool description does not add any further meaning beyond what is in the schema, so baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and resource ('packages we track') and specifies output fields (latest version + breaking-change counts). It clearly distinguishes from sibling tools like get_package (single package) and get_recent_breaking (breaking changes).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for listing tracked packages but provides no explicit guidance on when to use this tool versus alternatives like get_package or check_version. No exclusions or context for selection are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v0.1.1- First observed
check_version - First observed
get_package - First observed
get_recent_breaking - First observed
list_tracked
TDQS
Each tool has a clearly distinct purpose: listing tracked packages, fetching a full record, querying recent breaking changes across packages, and checking breaking changes for a specific version. No ambiguity between them.
All tool names follow a consistent verb_noun snake_case pattern: list_tracked, get_package, get_recent_breaking, check_version. Naming is predictable and clear.
With 4 tools, the server is well-scoped for its purpose of tracking API changelogs. It covers the essential operations (list, detail, recent, version check) without being too few or too many.
The tool set covers the main use cases: listing packages, getting full details, recent breaking changes, and version-specific impact. A minor gap is the lack of a tool to view actual changelog entries, but check_version essentially provides that for breaking changes.
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 Connectors
npm & PyPI freshness for AI agents: latest version, deprecations, dated breaking-change diffs.
Change intelligence for coding agents: sourced breaking changes for npm, PyPI, and Rust packages.
Latest versions, LTS windows, and EOL dates for 300+ products. Fresh ground truth for stale models.
New agent & dev tool releases daily: versions, changelogs, upgrade timing.
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.117ISC
- AlicenseAqualityAmaintenanceEnables AI coding agents to retrieve the latest stable versions of packages and tools across multiple ecosystems, preventing outdated dependency versions in generated code.48Apache 2.0
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to monitor web documentation for changes, perform semantic search with RAG, and analyze breaking changes in APIs.9-
- AlicenseAqualityCmaintenanceProvides accurate, source-grounded breaking-change briefings for npm packages by reading real GitHub release notes and CHANGELOGs, helping coding agents avoid hallucinated dependency migrations.318MIT
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/weiseer/api-changelog-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server