getpronto for VS Code
io.github.jaygould/getpronto
Upload, transform, and manage images on Get Pronto from AI agents.
client:VS Code
transport:stdio
runtime:npm
Install getpronto in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "getpronto-api-key",
"description": "GETPRONTO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "getpronto-base-url",
"description": "GETPRONTO_BASE_URL",
"password": true
}
],
"servers": {
"getpronto": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"getpronto-mcp"
],
"env": {
"GETPRONTO_API_KEY": "${input:getpronto-api-key}",
"GETPRONTO_BASE_URL": "${input:getpronto-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs