Skip to content
VS Code

Atlas for VS Code

io.github.atlasdevhq/atlas

Atlas is a YAML-defined semantic layer for analytics — authored by humans, consumed by AI agents.

client:VS Code transport:stdio runtime:npm

Install Atlas in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "atlas-datasource-url",
      "description": "ATLAS_DATASOURCE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "atlas-provider",
      "description": "ATLAS_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "atlas-api-url",
      "description": "ATLAS_API_URL",
      "password": true
    }
  ],
  "servers": {
    "atlas": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@useatlas/mcp"
      ],
      "env": {
        "ATLAS_DATASOURCE_URL": "${input:atlas-datasource-url}",
        "ATLAS_PROVIDER": "${input:atlas-provider}",
        "ATLAS_API_URL": "${input:atlas-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

Atlas in other clients