drio
Open app

WIP: MCP Server Superset

Source

Catalog onlyCatalog onlySTDIO

Overview

Superset MCP Server is a server-side application built on the Apache Superset REST API, designed to implement basic query capabilities through a Model Context Protocol (MCP).

To use the Superset MCP Server, install the necessary Node.js dependencies, start the service, and refer to the API documentation for guidance on making queries.

  • Database querying capabilities - Table querying capabilities - Field querying capabilities - SQL execution functionality
  1. Querying databases for data analysis.
  2. Executing SQL commands for data manipulation.
  3. Integrating with other applications for data retrieval.

Add to your AI client

Use these steps to connect WIP: MCP Server Superset in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "superset-mcp-server-liuscraft": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-superset-mcp-server-liuscraft"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "superset-mcp-server-liuscraft": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-superset-mcp-server-liuscraft"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "superset-mcp-server-liuscraft": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-superset-mcp-server-liuscraft"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "superset-mcp-server-liuscraft": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-superset-mcp-server-liuscraft"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "superset-mcp-server-liuscraft": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-superset-mcp-server-liuscraft"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "superset-mcp-server-liuscraft": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-superset-mcp-server-liuscraft"
      ]
    }
  }
}

FAQ

What are the environment requirements?

Node.js version 14.0.0 or higher is required.

How do I start the service?

Use the command `npm start` after building the project.

Is there a contribution guide?

Yes! Please follow the contribution guidelines outlined in the project documentation.