ReleaseRocket

MCP server

The ReleaseRocket MCP server lets a coding agent (Claude Code, Cursor, VS Code) list your releases, read generated content including blog MDX, and, with the right key scope, create, generate, and publish. It is a thin layer over the public REST API and uses the same project API key. ReleaseRocket never holds a write token to your repo; your agent writes files with your own permissions.

Endpoint

MCP serverhttps://mcp.releaserocket.io/mcp
REST APIhttps://api.releaserocket.io/v1

The transport is streamable HTTP. Authentication is a project API key sent as a bearer token in the Authorization header; there is no OAuth flow. Keys are created by project admins under Settings, then API keys, inside the app.

Connect with Claude Code

claude mcp add --transport http releaserocket https://mcp.releaserocket.io/mcp \
  --header "Authorization: Bearer rr_xxxxxxxx..."

Replace rr_xxxxxxxx... with a real key. A read key is enough to list releases and pull content; a full key is needed to publish. Configs for Cursor and VS Code are in the MCP connect guide.

Tools

The tools an agent sees are filtered by the scope of its key. A read key never sees the write or publish tools.

ToolWhat it doesScope
list_releasesList releases, filter by statusread
get_releaseRelease detail plus its changelogread
get_release_contentOne channel's output (blog, social, email, chat, web)read
create_releaseCreate a draft release from a commit rangewrite
generate_release_contentGenerate channel content for a releasewrite
publish_releasePublish to channelsfull

Docs