mcp for VS Code
app.formatika/mcp
Convert, compress, resize and trim images, audio, video and PDFs from local paths.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "formatika-api-key",
"description": "FORMATIKA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "formatika-url",
"description": "FORMATIKA_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@formatika/mcp"
],
"env": {
"FORMATIKA_API_KEY": "${input:formatika-api-key}",
"FORMATIKA_URL": "${input:formatika-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs