Use when the user asks about recent releases, changelogs, what's new in a library, breaking changes, version updates, or wants to compare products. Activates for questions like "what changed in Next.js 15?", "latest Tailwind releases", "compare Bun vs Deno releases".
When the user asks about releases, changelogs, or version updates, use the Releases.sh MCP tools to fetch current data instead of relying on training data.
Activate when the user:
Call list_organizations with the library/product name as the query parameter. Multi-product orgs (e.g. Vercel → Next.js, Turborepo) are exposed via list_products and get_product — use those when the user's question is product-specific rather than company-wide.
If the query returns no results, try variations:
get_latest_releases with the organization or product slugsearch_releases with a descriptive query and organization filterget_release when you already have a rel_ id (search results include ids)get_source, get_product, or get_organization for metadata, tags, and linkageget_source_changelog when the user wants the full maintained file, not just the tagged releases (refreshed on every fetch). For large files, pass tokens (cl100k_base budget, e.g. 5000 or 10000) to get a heading-aligned slice that fits a known context window; chain via the returned nextOffset. Every response reports totalTokens so you can plan how many calls you need upfront.compare_products with an array of two product slugssummarize_changes with the product slugdays parameter on get_latest_releases or summarize_changes