Launchly Docs

MCP Server

@launchly/mcp — let AI agents like Claude and Cursor read your changelog.

@launchly/mcp is a Model Context Protocol server that exposes a Launchly changelog to AI agents. Ask an agent "what's new in project X?" and it queries the changelog directly.

Run

npx @launchly/mcp
# or: npm i -g @launchly/mcp && launchly-mcp

Binary name: launchly-mcp. Transport: stdio.

Environment

VariableDefaultPurpose
LAUNCHLY_APIhttps://launchly.devBase URL of the Launchly instance. Point at your own for self-hosted.

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "launchly": {
      "command": "npx",
      "args": ["-y", "@launchly/mcp"],
      "env": { "LAUNCHLY_API": "https://launchly.dev" }
    }
  }
}

Cursor / other clients

Point the MCP client at the launchly-mcp stdio command and set LAUNCHLY_API in its environment.

Tools

get_changelog

Fetch the latest published entries for a project.

ArgumentTypeDescription
slugstring (required)Project slug, e.g. acme.
limitnumber (optional)Max entries, positive integer ≤ 50. Default: all.

Returns the project name and an array of entries (title, version, category, publishedAt). Backed by the public GET /api/widget/{slug} endpoint — no API key required.

On this page