orcadub mcp server for VS Code
io.github.continuum-ai-corp/orcadub-mcp-server
AI video dubbing via OrcaRouter (model orca/dub): upload a video or URL, poll, download the MP4.
client:VS Code
transport:stdio
runtime:npm
Install orcadub mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "orcadub-api-key",
"description": "ORCADUB_API_KEY",
"password": true
}
],
"servers": {
"orcadub-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@orcadub/cli"
],
"env": {
"ORCADUB_API_KEY": "${input:orcadub-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