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
| Name | Required | Description | Default |
|---|---|---|---|
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/")