pixelpanda mcp for VS Code
io.github.ryankramer/pixelpanda-mcp
33 image tools: free local editing, AI upscaling, background removal, and product photos
client:VS Code
transport:stdio
runtime:pypi
Install pixelpanda mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pixelpanda-api-token",
"description": "PIXELPANDA_API_TOKEN",
"password": true
}
],
"servers": {
"pixelpanda-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"pixelpanda-mcp"
],
"env": {
"PIXELPANDA_API_TOKEN": "${input:pixelpanda-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs