Skip to content

Agent Workflows and MCP

AI agents and MCP-connected tools can subscribe to changelog streams and reason over product updates. “Which database vendors shipped Postgres 17 support this month?” becomes a structured query, not a web search.

Watch Changelog provides a stdio MCP server for agent workflows.

Agents need structured data, not markdown blog posts. The MCP server gives agents:

  • list_sources: Browse the catalog of 5000+ changelog sources
  • get_entries: Fetch entries for selected sources with plan-gated access
  • request_source: Request a missing vendor changelog

Same uniform JSON as the REST API, but via stdio protocol.

The MCP server is at mcp/server.ts in the repo. Run it locally with environment variables:

Terminal window
WATCHCHANGELOG_API_URL=https://watchchangelog.com \
WATCHCHANGELOG_API_KEY=wcl_your_key \
node mcp/server.ts

Configure your MCP client (Cline, Zed, Claude Desktop) to spawn this server as a subprocess. The server communicates over stdio, not HTTP.

See /api on the website or docs/mcp.md in the repository for setup details.

Agent prompt:

“Which edge compute vendors shipped GA features in August 2026?”

The agent calls list_sources to find edge vendor slugs, then get_entries with ?since=2026-08-01 and filters by changeKind: "ga".

Agent prompt:

“Show me all deprecations with hard deadlines in Q1 2027 for Shopify and Stripe.”

The agent queries entries for shopify-api-updates and stripe.changelog, filters by changeKind: "deprecation", and checks sunsetAt dates.

Agent prompt:

“Summarize what AWS Lambda shipped in the last 30 days.”

The agent calls get_entries with ?source=aws.lambda&since=2026-07-30 and generates a bullet list from the titles and summaries.

Returns the catalog of changelog sources. No API key required for the list. Free keys can list the whole catalog to pick their 3 sources.

Fetches changelog entries for selected sources. Requires API key. Free tier: 3 sources. All plan: whole catalog.

Submits a request for a missing vendor changelog. No API key required.

The All plan ($9.99/mo) includes:

  • Every source in the catalog
  • stdio MCP server
  • Uniform API access
  • Priority support

Free plan (3 sources) also works with MCP, but you only get entries for 3 sources.

Try the API Playground to test API calls with your wcl_ key before wiring them into an agent.