Skip to content
VS Code

Soma for VS Code

ai.dinglebear/soma

RMCP runtime for provider-backed agents with CLI, REST, HTTP MCP, plugins, and scaffold support.

client:VS Code transport:stdio runtime:oci

Install Soma in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "soma-home",
      "description": "SOMA_HOME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "soma-provider-dir",
      "description": "SOMA_PROVIDER_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "soma-api-url",
      "description": "SOMA_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "soma-api-key",
      "description": "SOMA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rust-log",
      "description": "RUST_LOG",
      "password": true
    }
  ],
  "servers": {
    "soma": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/dinglebear-ai/soma:0.10.0"
      ],
      "env": {
        "SOMA_HOME": "${input:soma-home}",
        "SOMA_PROVIDER_DIR": "${input:soma-provider-dir}",
        "SOMA_API_URL": "${input:soma-api-url}",
        "SOMA_API_KEY": "${input:soma-api-key}",
        "RUST_LOG": "${input:rust-log}"
      }
    }
  }
}

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

Soma in other clients