ideogram mcp for VS Code
io.github.qmediat/ideogram-mcp
Ideogram V3 API — generate, edit, remix, reframe, replace background, upscale images
client:VS Code
transport:stdio
runtime:npm
Install ideogram mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ideogram-api-key",
"description": "IDEOGRAM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "ideogram-output-dir",
"description": "IDEOGRAM_OUTPUT_DIR",
"password": true
}
],
"servers": {
"ideogram-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@qmediat.io/ideogram-mcp"
],
"env": {
"IDEOGRAM_API_KEY": "${input:ideogram-api-key}",
"IDEOGRAM_OUTPUT_DIR": "${input:ideogram-output-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs