Skip to content
VS Code

dart query for VS Code

io.github.standardbeagle/dart-query

Dart AI task management MCP with batch operations, DartQL selectors, CSV import, zero context rot

client:VS Code transport:stdio runtime:npm

Install dart query in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dart-token",
      "description": "DART_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "dart-query": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@standardbeagle/dart-query"
      ],
      "env": {
        "DART_TOKEN": "${input:dart-token}"
      }
    }
  }
}

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

dart query in other clients