Skip to main content
Glama

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

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:

  1. Header with generation date and statistics
  2. Sections grouped by commit type:
    • 🚀 Features
    • 🐛 Fixes
    • 📚 Documentation
    • ⚡ Performance
    • ♻️ Refactoring
    • 🧪 Tests
    • 🏗️ Build
    • 🔧 Other
  3. 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:

  1. Using GitHub's since parameter when possible to reduce API calls
  2. Falling back to SHA-based filtering when needed
  3. Properly handling pagination
  4. Maintaining newest-first ordering for release notes
  5. Enriching commits with PR data when available

License

MIT

Install Server
A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Generates comprehensive and formatted release notes from GitHub repositories, efficiently organizing commits by type and including detailed statistics using smart API usage.

  1. Features
    1. Installation
      1. Usage
        1. Available Tools
      2. Output Format
        1. Environment Variables
          1. Implementation Details
            1. License

              Related MCP Servers

              • A
                security
                F
                license
                A
                quality
                Provides tools for mapping and analyzing GitHub repositories. It allows users to set a GitHub Personal Access Token and retrieve detailed information about a specified repository, including its structure and summary statistics.
                Last updated -
                2
                18
                TypeScript
              • A
                security
                A
                license
                A
                quality
                Enables users to interact with GitHub's Projects v2 API through natural language for Agile project management, supporting repository details, issue tracking, and project board management operations.
                Last updated -
                31
                29
                TypeScript
                GPL 2.0
              • A
                security
                A
                license
                A
                quality
                Analyzes git changes in repositories and generates conventional commit messages using OpenAI's GPT models, supporting both staged and unstaged changes with detailed summaries.
                Last updated -
                1
                3
                12
                TypeScript
                MIT License
              • A
                security
                F
                license
                A
                quality
                Enables comprehensive GitHub operations through natural language including file management, repository administration, issue tracking, and advanced code searching.
                Last updated -
                47
                0
                1
                TypeScript

              View all related MCP servers

              MCP directory API

              We provide all the information about MCP servers via our MCP API.

              curl -X GET 'https://glama.ai/api/mcp/v1/servers/nickbaumann98/release-notes-server'

              If you have feedback or need assistance with the MCP directory API, please join our Discord server