Remove watermarks from images using AI, directly from your code editor.
RunningRun 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
-s user instead of -s project to install globally for all projects.Create .cursor/mcp.json in your project:
{
"mcpServers": {
"dewatermark": {
"url": "https://mcp.dewatermark.ai/mcp",
"headers": {
"x-api-key": "<YOUR_API_KEY>"
}
}
}
}
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>"
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"dewatermark": {
"url": "https://mcp.dewatermark.ai/mcp",
"headers": {
"x-api-key": "<YOUR_API_KEY>"
}
}
}
}
| Tool | Description |
|---|---|
erase_watermark | Remove watermark from an image. Provide a local file path. |
check_credit | Check your remaining API credit balance. |
# 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
| Transport | URL | Clients |
|---|---|---|
| Streamable HTTP | https://mcp.dewatermark.ai/mcp | All clients |
| SSE | https://mcp.dewatermark.ai/sse | Legacy SSE clients |
Sign up at dewatermark.ai to get your API key.