What is the Patchlog MCP server?
Create, update, and publish changelog entries on your Patchlog changelog from any MCP client.
How to install Patchlog
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
PATCHLOG_API_TOKENrequiredsecretPatchlog API token from patchlog.io/settings/api-tokens (Pro plan)
PATCHLOG_API_URLOverride the API base URL (defaults to https://patchlog.io)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"patchlog": {
"command": "npx",
"args": [
"-y",
"patchlog-mcp"
],
"env": {
"PATCHLOG_API_TOKEN": "<YOUR_PATCHLOG_API_TOKEN>",
"PATCHLOG_API_URL": "<YOUR_PATCHLOG_API_URL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"patchlog": {
"command": "npx",
"args": [
"-y",
"patchlog-mcp"
],
"env": {
"PATCHLOG_API_TOKEN": "<YOUR_PATCHLOG_API_TOKEN>",
"PATCHLOG_API_URL": "<YOUR_PATCHLOG_API_URL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"patchlog": {
"command": "npx",
"args": [
"-y",
"patchlog-mcp"
],
"env": {
"PATCHLOG_API_TOKEN": "<YOUR_PATCHLOG_API_TOKEN>",
"PATCHLOG_API_URL": "<YOUR_PATCHLOG_API_URL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"patchlog": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"patchlog-mcp"
],
"env": {
"PATCHLOG_API_TOKEN": "<YOUR_PATCHLOG_API_TOKEN>",
"PATCHLOG_API_URL": "<YOUR_PATCHLOG_API_URL>"
}
}
}
}Claude Code
claude mcp add patchlog --env PATCHLOG_API_TOKEN=<YOUR_PATCHLOG_API_TOKEN> --env PATCHLOG_API_URL=<YOUR_PATCHLOG_API_URL> -- npx -y patchlog-mcpRelated MCP servers
List, inspect, and run saved HTTP requests from MailPal collections; write tools on Pro
0
View repository →