Skip to main content
Glama
aptro

Superset MCP Integration

by aptro

superset_dataset_list

Retrieve datasets from Superset to view accessible data sources with paginated results for analysis and management.

Instructions

Get a list of datasets from Superset

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

Returns: A dictionary containing dataset information including id, table_name, and database

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'superset_dataset_list' tool. It is registered via @mcp.tool(), requires authentication, handles API errors, and makes a GET request to Superset's /api/v1/dataset/ endpoint to list available datasets.
    @mcp.tool() @requires_auth @handle_api_errors async def superset_dataset_list(ctx: Context) -> Dict[str, Any]: """ Get a list of datasets from Superset Makes a request to the /api/v1/dataset/ endpoint to retrieve all datasets the current user has access to view. Results are paginated. Returns: A dictionary containing dataset information including id, table_name, and database """ return await make_api_request(ctx, "get", "/api/v1/dataset/")

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