Skip to main content
Glama
aptro

Superset MCP Integration

by aptro

superset_dashboard_list

Retrieve all accessible dashboards from Apache Superset to view and manage data visualization interfaces through paginated results.

Instructions

Get a list of dashboards from Superset

Makes a request to the /api/v1/dashboard/ endpoint to retrieve all dashboards the current user has access to view. Results are paginated.

Returns: A dictionary containing dashboard data including id, title, url, and metadata

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • main.py:507-521 (handler)
    The core handler function for the 'superset_dashboard_list' tool. It is decorated with @mcp.tool() for registration in the MCP server, @requires_auth to ensure authentication, and @handle_api_errors for error handling. The function makes a GET request to Superset's /api/v1/dashboard/ endpoint via the shared make_api_request helper to retrieve the list of accessible dashboards.
    @mcp.tool() @requires_auth @handle_api_errors async def superset_dashboard_list(ctx: Context) -> Dict[str, Any]: """ Get a list of dashboards from Superset Makes a request to the /api/v1/dashboard/ endpoint to retrieve all dashboards the current user has access to view. Results are paginated. Returns: A dictionary containing dashboard data including id, title, url, and metadata """ return await make_api_request(ctx, "get", "/api/v1/dashboard/")

Other Tools

Latest Blog Posts

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/aptro/superset-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server