Superset MCP Server
Allows AI agents to create and manage dashboards, charts, and filters in Apache Superset, using datasets from databases like Snowflake.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Superset MCP Servercreate a dashboard for monthly revenue from the sales dataset"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Superset MCP Server
MCP server that exposes Apache Superset as tools so the AI can build dashboards from Cursor: create dashboards, add charts from datasets (e.g. Snowflake views), and set filters from your instructions.
Sharing with the team
Best approach: Each colleague does a one-time setup on their machine with their own Superset credentials. No credentials are stored in the repo.
Each person: Follows TEAM_SETUP.md once: clone →
pip install -e .→ get their own auth (see GET_TOKEN.md) → add Superset MCP in Cursor with their path and credentials → reload MCP.
Related MCP server: metabase-mcp
Prerequisites
Python 3.10+
A running Superset instance with API enabled
In Superset: at least one database (e.g. Snowflake) and datasets (tables/views) that you want to use in dashboards
Setup
1. Install dependencies
From the directory that contains mcp_superset (the folder can live anywhere):
cd <path-to-mcp_superset>
pip install -e .
# or with uv:
uv pip install -e .2. Environment variables
Use one of: (A) session cookie, (B) access token, or (C) username/password. Set in Cursor MCP config or your shell:
Variable | Required | Description |
| Yes | Base URL of Superset (e.g. |
Option A – Session cookie (browser / Google login, no JWT) | ||
| Yes* | Cookie string, e.g. |
Option B – Access token | ||
| Yes* | JWT from browser. Optional: |
Option C – Username/password | ||
| Yes | API user (e.g. |
| Yes | Password for that user |
| No | Auth provider; default |
Session cookie (when you only have cookie, no Authorization header):
See GET_TOKEN.md: log in to Superset, F12 -> Application -> Cookies -> your Superset URL -> copy the session cookie value, then set SUPERSET_SESSION_COOKIE=session=<paste value>. Session expires when you close the browser or after some time; get a fresh cookie when you get 401s.
Do not commit credentials. Use Cursor’s MCP env or a local .env that is gitignored.
3. Add the server in Cursor
Open Cursor Settings → Features → MCP.
Click Add new MCP server.
Choose Run a script / command (stdio).
Configure:
Option A – Use your Python (recommended)
Command:
python(or the full path to your Python / venv, e.g.<path-to-mcp_superset>\.venv\Scripts\python.exe)Arguments:
-m mcp_superset.serverWorking directory:
Full path to the mcp_superset folder (e.g.c:\Bio\cursor_projects\mcp_superset)Env (add here or in Cursor MCP env):
SUPERSET_URL,SUPERSET_USERNAME,SUPERSET_PASSWORD
Option B – Global install
If you installed the package globally:
Command:
mcp-server-supersetEnv: same as above.
Option C – JSON config (Cursor MCP)
If your Cursor MCP is configured via JSON, add something like:
{
"mcpServers": {
"superset": {
"command": "python",
"args": ["-m", "mcp_superset.server"],
"cwd": "C:\\path\\to\\mcp_superset",
"env": {
"SUPERSET_URL": "https://superset.yourcompany.com",
"SUPERSET_USERNAME": "your_user",
"SUPERSET_PASSWORD": "your_password"
}
}
}
}Replace C:\\path\\to\\mcp_superset with the actual path where you placed the folder.
Restart Cursor or reload MCP after adding the server.
Tools exposed to the AI
Tool | Purpose |
| List Superset databases (e.g. Snowflake connection) |
| List datasets; optional |
| Get dataset by id (columns, metrics) for building charts |
| List dashboards; optional |
| Get dashboard by id or slug (layout, metadata, filters) |
| Create empty dashboard; then add charts and filters |
| Update dashboard (title, slug, published) |
| Delete a dashboard by id |
| Set native filters (JSON array of filter config) |
| Add chart to dashboard with position (x, y, width, height) |
| List charts; optional |
| Get chart by id |
| Create chart (dataset_id, viz_type, slice_name, params JSON) |
| Update chart (slice_name, params, description) |
| Delete a chart by id |
| List charts on a dashboard |
Workflow: Snowflake views → Superset dashboard
You tell the AI what you want: e.g. “Dashboard for view X, filter by date and region, bar chart and table.”
AI uses Snowflake MCP to inspect views/tables (e.g.
list_objects,run_snowflake_query).AI uses Superset MCP to:
superset_list_datasetsto find the dataset that points at that viewsuperset_get_datasetto see columnssuperset_create_dashboardand thensuperset_create_chartfor each chartsuperset_add_chart_to_dashboardto place themsuperset_update_dashboard_filtersto add the filters you asked for
You open the dashboard in Superset and refine if needed.
Native filters (dashboard filters)
superset_update_dashboard_filters takes a JSON string that is an array of filter objects. Each object typically has:
id: unique string id for the filtername: label shown in the UIfilterType: e.g.filter_select,filter_time,filter_timegraintargets: which charts/columns the filter applies todefaultDataMask: default valuescope: scope of the filter
The AI can build this from your instructions (e.g. “add a date range and a region dropdown”) by following Superset’s native filter schema.
Chart params
For superset_create_chart, params is a JSON string object. Contents depend on viz_type, for example:
table:
metrics,groupby,order_desc,row_limit, etc.big_number:
metric,compare_lag, etc.line / bar:
metrics,groupby,time_range,order_desc, etc.
The AI should use superset_get_dataset to see available columns/metrics and build valid params.
Run the server locally (optional)
cd mcp_superset
set SUPERSET_URL=https://...
set SUPERSET_USERNAME=admin
set SUPERSET_PASSWORD=...
python -m mcp_superset.serverThe server uses stdio; Cursor will start it automatically when the tools are used.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tlubben/bio-superset-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server