Connect published releases to AI
Give ChatGPT, Claude, Cursor, and other MCP-compatible clients access to a project's published release notes. Teams can ask what shipped, when it shipped, and what changed in a specific version.
Quickstart
Each project has its own MCP server URL, scoped by its slug. Replace <slug> with the project slug shown under Project → Settings.
https://www.releaseview.com/api/v1/projects/<slug>/mcpAdd this URL as a custom MCP connector in your AI client. Authentication is not required; only notes published to the project's public changelog are available.
Add it to Claude
- Open Settings → Connectors and select Add custom connector.
- Paste your project's MCP server URL and leave authentication empty.
- Start a chat and ask something like “what changed in the latest release?”
Custom connectors are available on Claude Pro, Max, Team, and Enterprise plans.
Add it to ChatGPT
- Enable Developer Mode in Settings.
- Add a connector using your project's MCP server URL. ChatGPT accepts
https://endpoints only. - Ask ChatGPT about your releases. It uses the
searchandfetchtools to find the relevant notes.
Developer Mode is available on ChatGPT Pro, Team, Enterprise, and Edu plans.
MCP tools
| Tool | Input | Returns |
|---|---|---|
search | query | Matching versions, titles, and URLs. |
fetch | id (a version) | The full release note for that version. |
list_releases | — | Every published version, newest first. |
get_latest_release | — | The most recent published note, in full. |
ReleaseView serves published notes only. Drafts, internal data, and project settings are never exposed through the MCP server.
Prefer HTTP?
The same public data is also available through the versioned JSON API for websites, scripts, and custom integrations.
GET https://www.releaseview.com/api/v1/projects/<slug>/releases # all published notes (?q= to search)
GET https://www.releaseview.com/api/v1/projects/<slug>/releases/latest # the most recent note
GET https://www.releaseview.com/api/v1/projects/<slug>/releases/<version> # one specific versionSee the REST API reference for response schemas, errors, and caching behavior.