Skip to main content

Claude

Point Claude at your Superset MCP endpoint: http://<host>:5008/mcp.

Claude Desktop — edit the config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Local development (no auth):

{
"mcpServers": {
"superset": {
"url": "http://localhost:5008/mcp"
}
}
}

With JWT authentication:

{
"mcpServers": {
"superset": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"http://your-superset-host:5008/mcp",
"--header",
"Authorization: Bearer YOUR_TOKEN"
]
}
}
}

Restart Claude Desktop after saving. The hammer icon in the chat bar confirms the connection.