flow nexus for VS Code
io.github.ruvnet/flow-nexus
Cloud-powered AI platform with multi-agent swarms, sandboxes, and workflow automation
client:VS Code
transport:stdio
runtime:npm
Install flow nexus in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "flow-nexus-api-key",
"description": "FLOW_NEXUS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "flow-nexus-base-url",
"description": "FLOW_NEXUS_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "e2b-api-key",
"description": "E2B_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
}
],
"servers": {
"flow-nexus": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"flow-nexus"
],
"env": {
"FLOW_NEXUS_API_KEY": "${input:flow-nexus-api-key}",
"FLOW_NEXUS_BASE_URL": "${input:flow-nexus-base-url}",
"E2B_API_KEY": "${input:e2b-api-key}",
"ANTHROPIC_API_KEY": "${input:anthropic-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