Skip to main content

Cursor

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

Open Cursor Settings → MCP (or edit ~/.cursor/mcp.json) and add the Superset server.

Local development (no auth):

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

With JWT authentication:

{
"mcpServers": {
"superset": {
"url": "http://your-superset-host:5008/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}

Restart Cursor or reload MCP servers from settings after saving the config.