Skip to content
VS Code

DataRaum for VS Code

io.github.dataraum/dataraum

Pre-computed metadata context engine for AI-driven data analytics

client:VS Code transport:stdio runtime:pypi

Install DataRaum in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dataraum-home",
      "description": "DATARAUM_HOME",
      "password": true
    }
  ],
  "servers": {
    "dataraum": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "dataraum"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "DATARAUM_HOME": "${input:dataraum-home}"
      }
    }
  }
}

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

DataRaum in other clients