面向开发者与 AI Agent

在 Claude 中使用 GammaRemover

通过 MCP 服务器和 agent skill,让 Claude Desktop、Claude Code 及任何 MCP 客户端在本地移除 Made with Gamma 水印 — 一条命令完成安装。

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"]
    }
  }
}

添加到 claude_desktop_config.json(设置 → 开发者 → 编辑配置),然后重启 Claude Desktop。

托管端点(免安装)

无法启动本地进程的客户端可使用托管的 streamable-HTTP 端点。文件仅在内存中处理,不会存储。

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

示例提示词

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

Agent 会选择正确的工具,在本地执行移除,并准确报告移除了多少个水印对象。

Agent Skill(Claude Code / OpenClaw)

比起服务器更喜欢 skill?一份 SKILL.md 同时教会 Claude Code 和 OpenClaw 完整流程,按需驱动 CLI。

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