Full-featured MCP server for Apache Superset with 135+ tools for dashboards, charts, datasets, SQL Lab, security, and more
Server Config
{
"mcpServers": {
"superset-stdio": {
"command": "uvx",
"args": [
"mcp-superset",
"--transport",
"stdio"
],
"env": {
"SUPERSET_BASE_URL": "https://your-superset-instance.com",
"SUPERSET_USERNAME": "admin",
"SUPERSET_PASSWORD": "<YOUR_PASSWORD>"
}
},
"superset-http": {
"type": "http",
"url": "http://localhost:8001/mcp"
},
"superset-sse": {
"type": "sse",
"url": "http://localhost:8001/sse"
}
}
}