For developers & AI agents

Use GammaRemover inside Claude

An MCP server and agent skill that let Claude Desktop, Claude Code, and any MCP client remove the Made with Gamma watermark from your exports — locally, with one install command.

Claude Code

claude mcp add gamma-remover -- uvx gamma-watermark-remover-mcp

Claude Desktop

{
  "mcpServers": {
    "gamma-watermark-remover": {
      "command": "uvx",
      "args": ["gamma-watermark-remover-mcp"]
    }
  }
}

Add to claude_desktop_config.json (Settings → Developer → Edit Config), then restart Claude Desktop.

Hosted endpoint (no install)

For clients that cannot spawn local processes, a hosted streamable-HTTP endpoint is available. Files are processed in memory only and never stored.

claude mcp add gamma-remover --transport http https://gammaremover.com/mcp

Example prompt

remove the gamma watermark from ~/Downloads/deck.pdf

The agent picks the right tool, runs the removal locally, and reports exactly how many watermark objects were removed.

Agent skill (Claude Code / OpenClaw)

Prefer a skill over a server? One SKILL.md teaches both Claude Code and OpenClaw the complete workflow, driving the CLI on demand.

mkdir -p ~/.claude/skills/gamma-watermark-remover
curl -fsSL https://raw.githubusercontent.com/gammaremover/gamma-watermark-remover-skill/main/SKILL.md \
  -o ~/.claude/skills/gamma-watermark-remover/SKILL.md