Fake Changelog

⚡ Generators 🌭🌭 Medium 5,423 calls

The Fake Changelog API generates a complete software changelog for any version string. Sections include "Fixed" (bugs nobody reported), "Added" (features nobody asked for), "Changed" (refactors that did nothing), "Removed" (the dark mode toggle), and "Known Issues" (the bug is now in a different place). Signed by the team.

Add to Your MCP Client

Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.

{
  "mcpServers": {
    "fake-changelog": {
      "url": "https://api.stupidmcps.com/fake-changelog/mcp"
    }
  }
}
{
  "mcpServers": {
    "fake-changelog": {
      "url": "https://api.stupidmcps.com/fake-changelog/mcp"
    }
  }
}
POST https://api.stupidmcps.com/fake-changelog/mcp

Add the snippet to your client's MCP config (typically claude_desktop_config.json for Claude Desktop, ~/.cursor/mcp.json for Cursor). Restart the client. The tools become available to your AI assistant.

No-code option: connect via Pipeworx — one click into Claude, ChatGPT, and friends.

Or Try It Directly — No MCP Client Required

Fake Changelog.exe
_ ×
Version string, e.g. "2.4.1"

Parameters

Parameter Type Required Default Description
version string Required Version string, e.g. "2.4.1"

Examples

curl "https://api.stupidapis.com/fake-changelog/generate?version=2.4.1"
import requests

response = requests.get(
    "https://api.stupidapis.com/fake-changelog/generate",
    params={"version": "2.4.1"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/fake-changelog/generate?version=2.4.1"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
version string Version string
released string Today's date
fixed string[] Bug fixes
added string[] New features
changed string[] Internal changes
removed string[] Removed things
known_issues string[] Things you should know
signed_by string Always "the team"

Example Response

{
  "version": "2.4.1",
  "released": "2026-05-16",
  "fixed": [
    "Fixed a bug nobody reported but everyone suffered from",
    "The button now works on Tuesdays"
  ],
  "added": [
    "Added telemetry. Trust us.",
    "New onboarding flow that nobody asked for"
  ],
  "changed": [
    "Updated dependencies. We do not know why.",
    "Refactored a function that was working"
  ],
  "removed": [
    "Removed a button."
  ],
  "known_issues": [
    "Dark mode is currently darker than dark",
    "CSV exports may include a small additional column"
  ],
  "signed_by": "the team"
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidmcps.com/fake-changelog/mcp
POST https://api.stupidmcps.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy