markly for VS Code
io.github.whitemarmot/markly
Add text or logo watermarks to images via the Markly.cloud API. Batch supported.
client:VS Code
transport:stdio
runtime:npm
Install markly in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "markly-api-key",
"description": "MARKLY_API_KEY",
"password": true
}
],
"servers": {
"markly": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"markly-mcp-server"
],
"env": {
"MARKLY_API_KEY": "${input:markly-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