Corent for VS Code
io.github.gg13121/corent-mcp
Generate images, videos, voice, and text via the Corent API. Auto model routing with fallback.
client:VS Code
transport:stdio
runtime:npm
Install Corent in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "corent-api-key",
"description": "CORENT_API_KEY",
"password": true
}
],
"servers": {
"corent-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"corent-mcp"
],
"env": {
"CORENT_API_KEY": "${input:corent-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs