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
Kali MCP Server
A Kali Linux MCP server providing AI assistants with access to security tools.
MCPAgent
An intelligent agent framework based on MCP, supporting multiple large language models and tool integrations for testing single-agent effectiveness.
NativeWind
Transform Tailwind components to NativeWind 4.
Jetty.io
Work on dataset metadata with MLCommons Croissant validation and creation.
Substrate MCP Server
A Model Context Protocol (MCP) server for Substrate blockchains, written in Rust.
Sleep MCP Server
Pauses the execution of an agent for a specified duration.
Awesome LLMs Txt
Access documentation from the Awesome-llms-txt repository directly in your conversations.
Cucumber Studio
Provides LLM access to the Cucumber Studio testing platform for managing and executing tests.
Remote MCP Server (Authless)
A simple, auth-less MCP server on Cloudflare Workers that provides the current time in the US Eastern timezone.
DeepInfra API
Provides a full suite of AI tools via DeepInfraβs OpenAI-compatible API, including image generation, text processing, embeddings, and speech recognition.