Skip to content
VS Code

QuestDB Web Console MCP Server for VS Code

io.github.questdb/mcp-server-questdb

Connects coding agents to a running QuestDB Web Console: notebook cells, SQL queries, and charts.

client:VS Code transport:stdio runtime:npm

Install QuestDB Web Console MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "console-origin",
      "description": "CONSOLE_ORIGIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-bridge-port",
      "description": "MCP_BRIDGE_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-path",
      "description": "LOG_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-questdb": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@questdb/mcp-server-questdb"
      ],
      "env": {
        "CONSOLE_ORIGIN": "${input:console-origin}",
        "MCP_BRIDGE_PORT": "${input:mcp-bridge-port}",
        "LOG_PATH": "${input:log-path}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

QuestDB Web Console MCP Server in other clients