Back to Browse

Patchlog MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Create, update, and publish changelog entries on your Patchlog changelog from any MCP client.

About

Create, update, and publish changelog entries on your Patchlog changelog from any MCP client.

Remote endpoints: streamable-http: https://patchlog.io/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (4 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

Endpoint verified · Requires authentication · 2 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Patchlog API token from patchlog.io/settings/api-tokens (Pro plan)Required

Environment variable: PATCHLOG_API_TOKEN

Override the API base URL (defaults to https://patchlog.io)Optional

Environment variable: PATCHLOG_API_URL

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

patchlog-mcp

MCP server for Patchlog. Write, update, and publish your changelog straight from Claude Code, Claude Desktop, Cursor, or any other MCP client. Ship a feature, then tell your agent "add a changelog entry for this" and it lands on your public changelog.

Requirements

Setup

Claude Code

claude mcp add patchlog -e PATCHLOG_API_TOKEN=your-token-here -- npx -y patchlog-mcp

Claude Desktop

Add this to your claude_desktop_config.json:

{
    "mcpServers": {
        "patchlog": {
            "command": "npx",
            "args": ["-y", "patchlog-mcp"],
            "env": {
                "PATCHLOG_API_TOKEN": "your-token-here"
            }
        }
    }
}

Cursor

Add the same block to .cursor/mcp.json in your project, or to ~/.cursor/mcp.json globally:

{
    "mcpServers": {
        "patchlog": {
            "command": "npx",
            "args": ["-y", "patchlog-mcp"],
            "env": {
                "PATCHLOG_API_TOKEN": "your-token-here"
            }
        }
    }
}

Remote server (no Node required)

Patchlog also serves this same tool set as a remote MCP endpoint. Point your client at https://patchlog.io/mcp with your API token as a bearer token:

claude mcp add --transport http patchlog https://patchlog.io/mcp --header "Authorization: Bearer your-token-here"

Tools

ToolWhat it does
list_projectsList your projects with their public changelog URLs
list_entriesList entries for a project, filterable by status and type
get_entryFetch one entry with its full Markdown content
create_entryCreate an entry (draft by default, or publish immediately, or schedule with a future date)
update_entryChange any field of an existing entry
publish_entryPush a draft or scheduled entry live right now

Configuration

Environment variableRequiredDefault
PATCHLOG_API_TOKENYesnone
PATCHLOG_API_URLNohttps://patchlog.io

Example prompts

  • "Add a changelog entry for the export feature we just shipped and publish it."
  • "Draft changelog entries for everything in this release branch, I will review them in Patchlog."
  • "Schedule a changelog entry about the pricing change for next Monday 9am."

Development

npm install
npm test
npm run build

License

MIT

Reviews

No reviews yet

Be the first to review this server!