kie mcp for VS Code
io.github.elibarnett/kie-mcp
MCP for kie.ai: 45+ image, 70+ video, 20+ audio models with model intelligence
client:VS Code
transport:stdio
runtime:npm
Install kie mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kie-api-key",
"description": "KIE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kie-project-root",
"description": "KIE_PROJECT_ROOT",
"password": true
}
],
"servers": {
"kie-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"kie-mcp"
],
"env": {
"KIE_API_KEY": "${input:kie-api-key}",
"KIE_PROJECT_ROOT": "${input:kie-project-root}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs