Skip to content
VS Code

MCP Superset for VS Code

io.github.bintocher/mcp-superset

Apache Superset MCP server — 135+ tools for dashboards, charts, datasets, SQL Lab, and security

client:VS Code transport:stdio runtime:pypi

Install MCP Superset in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "superset-base-url",
      "description": "SUPERSET_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "superset-username",
      "description": "SUPERSET_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "superset-password",
      "description": "SUPERSET_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "mcp-superset": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-superset"
      ],
      "env": {
        "SUPERSET_BASE_URL": "${input:superset-base-url}",
        "SUPERSET_USERNAME": "${input:superset-username}",
        "SUPERSET_PASSWORD": "${input:superset-password}"
      }
    }
  }
}

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

MCP Superset in other clients