Release Notes Server
Generates release notes from GitHub repositories by fetching and organizing commits.
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
sinceparameter
Installation
npm install
npm run build
Usage
Add this server to your MCP configuration:
{
"mcpServers": {
"release-notes": {
"command": "node",
"args": ["/path/to/release-notes-server/build/index.js"],
"env": {
"GITHUB_TOKEN": "your-github-token"
}
}
}
}
Available Tools
generate_release_notes
Generates release notes for a GitHub repository.
Parameters:
{
"owner": string, // Repository owner
"repo": string, // Repository name
"commitRange": {
"fromCommit"?: string, // Starting commit SHA
"toCommit"?: string // Ending commit SHA
},
"format": {
"type": "markdown", // Output format
"groupBy": "type", // How to group commits
"includeStats": boolean // Include commit statistics
}
}
Example:
const result = await use_mcp_tool({
server_name: "release-notes",
tool_name: "generate_release_notes",
arguments: {
owner: "owner",
repo: "repo",
commitRange: {
fromCommit: "abc123" // Get commits from this SHA
},
format: {
type: "markdown",
groupBy: "type",
includeStats: true
}
}
});
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
sinceparameter 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
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
mermaid-mcp-server Public
MCP server for generating Mermaid diagrams from projects (local/GitHub) and rendering via Kroki.
FileForge
Transforms raw code into polished solutions with optimized performance and vector embeddings support.
HiGHS MCP Server
Provides linear programming (LP) and mixed-integer programming (MIP) optimization capabilities using the HiGHS solver.
MCP Hot-Reload
A Hot Module Replacement (HMR) proxy server for MCP servers that automatically restarts on file changes, buffers messages, and manages connections.
Galley MCP Server
Integrates Galley's GraphQL API with MCP clients. It automatically introspects the GraphQL schema for seamless use with tools like Claude and VS Code.
Firebase MCP Server
You can use the Firebase MCP server to give AI-powered development tools the ability to work with your Firebase projects and your app's codebase.
LetzAI
An MCP server for image generation using the LetzAI API.
Substrate MCP Server
A Model Context Protocol (MCP) server for Substrate blockchains, written in Rust.
Model Context Protocol servers
A collection of reference implementations for the Model Context Protocol (MCP), demonstrating secure and controlled access to tools and data sources for Large Language Models (LLMs).
DocC MCP
Exposes Apple DocC documentation archives to AI agents, enabling real-time access to Swift documentation.