Dewatermark MCP Server

Remove watermarks from images using AI, directly from your code editor.

Running

Quick Setup

Claude Code
1

Run this command in your terminal:

claude mcp add -t http -s project \
  -H "x-api-key: <YOUR_API_KEY>" \
  -- dewatermark https://mcp.dewatermark.ai/mcp
Use -s user instead of -s project to install globally for all projects.
Cursor
1

Create .cursor/mcp.json in your project:

{
  "mcpServers": {
    "dewatermark": {
      "url": "https://mcp.dewatermark.ai/mcp",
      "headers": {
        "x-api-key": "<YOUR_API_KEY>"
      }
    }
  }
}
OpenAI Codex
1

Add to .codex/config.toml:

[mcp_servers.dewatermark]
type = "url"
url = "https://mcp.dewatermark.ai/mcp"

[mcp_servers.dewatermark.headers]
x-api-key = "<YOUR_API_KEY>"
Gemini CLI
1

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "dewatermark": {
      "url": "https://mcp.dewatermark.ai/mcp",
      "headers": {
        "x-api-key": "<YOUR_API_KEY>"
      }
    }
  }
}

Available Tools

ToolDescription
erase_watermarkRemove watermark from an image. Provide a local file path.
check_creditCheck your remaining API credit balance.

Usage Example

# In Claude Code, Cursor, Codex, or Gemini CLI:
> Remove watermark from /path/to/image.png

# Or with a URL:
> Remove watermark from https://example.com/photo.jpg

API Endpoints

TransportURLClients
Streamable HTTPhttps://mcp.dewatermark.ai/mcpAll clients
SSEhttps://mcp.dewatermark.ai/sseLegacy SSE clients

Get Your API Key

Sign up at dewatermark.ai to get your API key.