Use ChangeCrab inside Cursor, Claude Desktop, and other AI tools - list changelogs, create posts, and get product info - all from natural language
You’re already in Cursor or Claude, writing code or drafting docs. You want to add a changelog entry for the feature you just shipped—but switching to the browser, logging in, and clicking through the dashboard breaks your flow.
What if you could just ask: “Create a changelog post for the new login flow” and have it done?
That’s what the ChangeCrab MCP server does. It plugs ChangeCrab into the Model Context Protocol (MCP), so your AI assistant can list changelogs, create and update posts, and answer questions about ChangeCrab—all from chat.
MCP (Model Context Protocol) is an open standard that lets AI assistants connect to external tools and data. Instead of the model only “knowing” what’s in its training data, it can call your APIs, read your docs, and act on your behalf—with your permission and your API keys.
Cursor, Claude Desktop, and a growing set of tools support MCP. You add a small “MCP server” that speaks the protocol; the AI then gets tools like “list my changelogs” or “create a post” and uses them when they’re relevant.
The ChangeCrab MCP server exposes your changelog workflow as tools the AI can call:
It also includes info tools (no API key needed) so the AI can answer “What is ChangeCrab?” and “Do I need a paid plan for the API?” from our docs.
You need a ChangeCrab account with an active subscription or trial (the API is paid-only) and an API key from your dashboard.
Get an API key
ChangeCrab → Settings → API Keys. Create a key and copy it.
Add the MCP server
In Cursor: Settings → Features → MCP, or edit .cursor/mcp.json (project or ~/.cursor/mcp.json). In Claude Desktop, edit your config file (e.g. ~/Library/Application Support/Claude/claude_desktop_config.json on macOS).
Configure ChangeCrab
Add a server named changecrab with:
{
"mcpServers": {
"changecrab": {
"command": "npx",
"args": ["-y", "changecrab-mcp-server"],
"env": {
"CHANGECRAB_API_KEY": "your-api-key-here"
}
}
}
}
Restart Cursor or Claude so it picks up the new server.
After that, the assistant can use the ChangeCrab tools when you ask about your changelogs.
The AI will call the right tools (e.g. list_changelogs, create_post) and show you the results or confirm the action.
The server is a small Node.js app that:
You can run it with npx (npx changecrab-mcp-server) or from source in the ChangeCrab repo (mcp-server/). It’s open source and uses the same API that powers the web app and Zapier.
npx changecrab-mcp-server (after publishing to npm).If you’re already using Cursor or Claude and ChangeCrab, add the MCP server and manage your changelog from chat.