MediaEngine for VS Code
io.github.tr1ckymag1ca1/mediaengine
AI image, video, and audio generation for MCP — one API key, every model, wiring never changes.
client:VS Code
transport:stdio
runtime:npm
Install MediaEngine in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mediaengine-api-key",
"description": "MEDIAENGINE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "mediaengine-base-url",
"description": "MEDIAENGINE_BASE_URL",
"password": true
}
],
"servers": {
"mediaengine": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-media-engine"
],
"env": {
"MEDIAENGINE_API_KEY": "${input:mediaengine-api-key}",
"MEDIAENGINE_BASE_URL": "${input:mediaengine-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