A small, generic MCP server for combining GitHub/GitLab/Gitea releases into product release notes
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A small, generic MCP server that combines GitHub releases from several repositories into a single product release note. The server just fetches and bundles raw data; the LLM synthesizes the final notes.
Nothing is architecture-specific:
provider β which forge to read releases from: github (default),
gitlab, or gitea/Forgejo. Release fetching goes through a small adapter,
so adding a forge means normalizing its release JSON β a contained change.repos β the repos the server is allowed to read releases from.contextSources β arbitrary URLs loaded as background context (a style
guide, a versions file, feature names β anything). The server assigns no
meaning; what each source is is decided by what you put behind the URL.Config holds no secrets β only the repo set and context. Provider and auth come from the environment.
Environment (provider-agnostic, set in .env or your shell):
| Var | Purpose | Default |
|---|---|---|
TOKEN | Auth token for the provider β never in config | (empty; ok for public repos) |
PROVIDER | github | gitlab | gitea (overrides config) | github |
BASE_URL | API base β only for self-hosted GitLab / Gitea | provider default |
format on a context source is optional β auto-detected from
Content-Type / URL extension / content sniffing. Override only when wrong.The server only ever reads releases (GET /repos/{owner}/{repo}/releasesβ¦),
so give TOKEN the minimum read scope β never write access.
| Provider | Public repos | Private repos |
|---|---|---|
| GitHub β fine-grained PAT | no token needed | Contents: Read-only (releases live under Contents), for each repo you list |
| GitHub β classic PAT | no token needed (or public_repo) | repo scope |
| GitLab | no token needed | read_api scope |
| Gitea / Forgejo | no token needed | read:repository scope |
For GitHub, a fine-grained PAT scoped to just the repos in config.json with
Contents β Read-only is the tightest setup and is all this server requires.
The config (repos + contextSources) must come from one of two places β the server errors on startup if neither is set:
| Source | Use it for |
|---|---|
RELEASE_MCP_CONFIG_JSON | The config as inline JSON. No file needed β ideal for uvx / MCP hubs where everything is an env var. |
RELEASE_MCP_CONFIG | Path to a config.json file (default ./config.json). Used by the container, which mounts a real file. |
Inline JSON wins when both are set. Copy config.example.json to get started
with the file approach.
| Tool | Purpose |
|---|---|
list_repos() | The configured repos |
list_releases(repo, limit) | Recent releases for one repo |
get_latest_version(repo) | Newest release for one repo |
get_release(repo, tag) | Full notes for one tag |
compare_releases(repo, from_tag, to_tag) | All releases between two versions |
gather_release_notes(selections[]) | Bundle raw notes from N (repo, tag) pairs (concurrent) |
get_context(name?) | Load configured context URLs (auto-detected format) |
Selection is dynamic β you (or Claude) pass the (repo, tag) pairs to
combine. The server's instructions tell Claude to call get_context() first.
The server runs in a container over HTTP transport on localhost:8000.
First create the config and env files (both runs need them):
docker compose watchFor local dev, docker compose watch keeps the server live while you edit:
| Change | Action |
|---|---|
server.py | sync + restart β copied into the container, process restarts |
requirements.txt, Dockerfile | rebuild β image is rebuilt automatically |
config.json | bind-mounted (live); run docker compose restart to reload it |
uvx (no clone, no container)The server is published to PyPI, so a client can launch it on demand with
uvx β no checkout and no Docker:
uvx talks to the server over stdio (the default transport). Since there's
no file to mount, pass the config inline as JSON via RELEASE_MCP_CONFIG_JSON
(everything is env-only β ideal for MCP hubs):
Prefer a file? Point RELEASE_MCP_CONFIG at an absolute path instead
(uvx runs from an unknown working directory, so a relative path won't resolve):
HTTP (container) β point Claude Code at the running server by its URL:
stdio (uvx) β let Claude Code launch the server as a subprocess:
Then ask Claude: "Combine the latest releases of auth-service and web into a product release note."
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/release-notes-mcp)<a href="https://allmcps.com/mcp/release-notes-mcp"><img src="https://allmcps.com/api/badge/release-notes-mcp?style=directory" alt="Release Notes MCP on AllMCPs" /></a>