Connect AI Watermark Remover to your AI coding assistant via the Model Context Protocol (MCP). Detect and remove AI watermarks directly from Claude, Cursor, Windsurf, and more.
| Property | Value |
|---|---|
| Server Name | ai-watermark-remover |
| SSE Endpoint | https://www.aiwatermarksremover.com/sse |
| Transport | Server-Sent Events (SSE) |
| Authentication | None required (free & open) |
| Rate Limit | 30 requests/minute per IP |
Edit your claude_desktop_config.json file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"ai-watermark-remover": {
"url": "https://www.aiwatermarksremover.com/sse"
}
}
}
Add to your project or global settings:
{
"mcpServers": {
"ai-watermark-remover": {
"type": "sse",
"url": "https://www.aiwatermarksremover.com/sse"
}
}
}
Or add via CLI command:
claude mcp add ai-watermark-remover --transport sse https://www.aiwatermarksremover.com/sse
Click "+ ๆทปๅ ๆๅกๅจ / + Add Server" and fill in:
| Field | Value |
|---|---|
| Name (ๅ็งฐ) | ai-watermark-remover |
| Command (ๅฝไปค) | npx |
| Args (ๅๆฐ) | -y mcp-remote https://www.aiwatermarksremover.com/sse |
| ENV (็ฏๅขๅ้) | leave empty |
If you don't have Node.js but have uv installed:
| Field | Value |
|---|---|
| Name (ๅ็งฐ) | ai-watermark-remover |
| Command (ๅฝไปค) | uvx |
| Args (ๅๆฐ) | mcp-remote https://www.aiwatermarksremover.com/sse |
| ENV (็ฏๅขๅ้) | leave empty |
If you have Python 3.10+ installed:
# Install mcp-remote first pip install mcp-remote
| Field | Value |
|---|---|
| Name (ๅ็งฐ) | ai-watermark-remover |
| Command (ๅฝไปค) | python |
| Args (ๅๆฐ) | -m mcp_remote https://www.aiwatermarksremover.com/sse |
| ENV (็ฏๅขๅ้) | leave empty |
python3 instead of python.Go to Settings โ MCP Servers, add a new server:
{
"mcpServers": {
"ai-watermark-remover": {
"url": "https://www.aiwatermarksremover.com/sse"
}
}
}
Or use the command bridge method:
{
"mcpServers": {
"ai-watermark-remover": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://www.aiwatermarksremover.com/sse"]
}
}
}Add to your Windsurf MCP configuration:
{
"mcpServers": {
"ai-watermark-remover": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://www.aiwatermarksremover.com/sse"]
}
}
}
Connect using the SSE endpoint URL:
SSE Endpoint: https://www.aiwatermarksremover.com/sse Messages: https://www.aiwatermarksremover.com/messages/
For stdio-only clients, use the npx bridge:
npx -y mcp-remote https://www.aiwatermarksremover.com/sse
text REQUIRED string โ The text to scan for hidden watermarkstext REQUIRED string โ The text to remove watermarks fromfile_base64 REQUIRED string โ Base64-encoded file contentfilename REQUIRED string โ Original filename with extension (e.g. 'photo.png')file_base64 REQUIRED string โ Base64-encoded file contentfilename REQUIRED string โ Original filename with extensionOnce connected, simply ask Claude to use the tools:
# Detect watermarks "Check this text for hidden AI watermarks: [paste your text]" # Remove watermarks "Remove any hidden watermarks from this text: [paste your text]" # File watermark detection "Detect watermarks in this PDF file"
from mcp import ClientSession
from mcp.client.sse import sse_client
async def main():
async with sse_client("https://www.aiwatermarksremover.com/sse") as (read, write):
async with ClientSession(read, write) as session:
await session.initialize()
# List tools
tools = await session.list_tools()
print(tools)
# Detect watermarks
result = await session.call_tool(
"detect_watermark",
{"text": "Your AI-generated text here"}
)
print(result)
npm install -g mcp-remote first, then use mcp-remote https://www.aiwatermarksremover.com/sse as the command.