claudeclear mcp for VS Code
io.github.aidevelopers2/claudeclear-mcp
Remove the Claude text watermark by rewriting text, and strip C2PA/EXIF metadata from images.
client:VS Code
transport:stdio
runtime:npm
Install claudeclear mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "claudeclear-api-key",
"description": "CLAUDECLEAR_API_KEY",
"password": true
}
],
"servers": {
"claudeclear-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"claudeclear-mcp"
],
"env": {
"CLAUDECLEAR_API_KEY": "${input:claudeclear-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs