The Releasebot MCP server lets AI assistants query your release note feed in real time.
There are two ways to connect:
- Hosted server (easiest, works in any MCP client)
- Self-hosted via npm (run the server yourself if you want full control)
Option 1: Hosted server
The hosted MCP server is at:
https://releasebot.io/mcp
You can authenticate with Oauth (which is the default for services like Claude Desktop and various web interfaces), or by passing your API key in the header of your request:
Authorization: Bearer rb_your_key_here
You can see an example of it in practice: https://claude.ai/share/1dd2980e-f5e0-4f38-bd77-99f84d95bd89
Option 2: Self-hosted via npm
npx @releasebot-io/mcp
Source and docs: github.com/releasebot-io/releasebot
Available tools
search_vendor
Search for vendors, products, or releases by keyword. This tool is free and does not consume credits.
| Parameter | Type | Description |
|---|---|---|
query |
string (required) | Vendor or product name to search for |
maxResults |
integer | Max results (default: 100, max: 200) |
pageOffset |
integer | Pagination offset (default: 0) |
Use this to find the slug or ID of a vendor or product before passing it to search_releases.
search_releases
Fetch recent releases for a vendor, product, or your personal feed. Costs 1 credit per release returned, with a minimum of 1 credit per call.
| Parameter | Type | Description |
|---|---|---|
vendorSlug |
string | Vendor slug (e.g. apple) |
vendorId |
integer | Vendor ID |
productSlug |
string | Product slug (e.g. testflight) |
productId |
integer | Product ID |
feedId |
integer | Your personal feed ID |
limit |
integer | Max results (default: 10, max: 100) |
offset |
integer | Pagination offset (default: 0) |
before |
ISO date string | Only return releases on or before this date |
At least one filter is required.
Credits
Credits are shared with the API and CLI, all drawing from the same monthly pool. See the full credits breakdown.
Questions?
Reach out at [email protected].