Skip to content
VS Code

ruv swarm for VS Code

io.github.ruvnet/ruv-swarm

Neural network swarm orchestration with WebAssembly acceleration and MCP integration

client:VS Code transport:stdio runtime:npm

Install ruv swarm in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ruv-swarm-log-level",
      "description": "RUV_SWARM_LOG_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ruv-swarm-db-path",
      "description": "RUV_SWARM_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ruv-swarm-enable-simd",
      "description": "RUV_SWARM_ENABLE_SIMD",
      "password": true
    }
  ],
  "servers": {
    "ruv-swarm": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ruv-swarm"
      ],
      "env": {
        "RUV_SWARM_LOG_LEVEL": "${input:ruv-swarm-log-level}",
        "RUV_SWARM_DB_PATH": "${input:ruv-swarm-db-path}",
        "RUV_SWARM_ENABLE_SIMD": "${input:ruv-swarm-enable-simd}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ruv swarm in other clients