Release Notes MCP Server
Release Notes Server
An MCP server that generates beautiful release notes from GitHub repositories. It efficiently fetches commits, organizes them by type, and presents them in a clean, readable format.
Features
- ๐ฏ Smart commit filtering by date or SHA
- ๐ Groups commits by type (features, fixes, etc.)
- ๐ Enriches commits with PR data
- ๐ Includes detailed statistics
- ๐จ Clean markdown formatting with emojis
- โก Efficient API usage with GitHub's
since
parameter
Installation
Copy
Usage
Add this server to your MCP configuration:
Copy
Available Tools
generate_release_notes
Generates release notes for a GitHub repository.
Parameters:
Copy
Example:
Copy
Output Format
The generated release notes include:
- Header with generation date and statistics
- Sections grouped by commit type:
- ๐ Features
- ๐ Fixes
- ๐ Documentation
- โก Performance
- โป๏ธ Refactoring
- ๐งช Tests
- ๐๏ธ Build
- ๐ง Other
- Detailed statistics including:
- Total commits
- Breaking changes
- Commits by type
- Commits by author
Environment Variables
GITHUB_TOKEN
: GitHub personal access token with repo access
Implementation Details
The server implements efficient commit fetching by:
- Using GitHub's
since
parameter when possible to reduce API calls - Falling back to SHA-based filtering when needed
- Properly handling pagination
- Maintaining newest-first ordering for release notes
- Enriching commits with PR data when available
License
MIT
You must be authenticated.
Generates comprehensive and formatted release notes from GitHub repositories, efficiently organizing commits by type and including detailed statistics using smart API usage.