orchex for VS Code
io.github.wundam/orchex
Autopilot AI orchestration — auto-plan, parallelize, self-heal, and route across 6 LLMs.
client:VS Code
transport:stdio
runtime:npm
Install orchex in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "gemini-api-key",
"description": "GEMINI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "deepseek-api-key",
"description": "DEEPSEEK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "orchex-api-url",
"description": "ORCHEX_API_URL",
"password": true
}
],
"servers": {
"orchex": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@wundam/orchex"
],
"env": {
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"OPENAI_API_KEY": "${input:openai-api-key}",
"GEMINI_API_KEY": "${input:gemini-api-key}",
"DEEPSEEK_API_KEY": "${input:deepseek-api-key}",
"ORCHEX_API_URL": "${input:orchex-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs