Skip to main content
Glama
aptro

Superset MCP Integration

by aptro

superset_explore_form_data_create

Store temporary chart configuration data for exploration in Apache Superset, including datasource, metrics, and visualization settings.

Instructions

Create form data for chart exploration

Makes a request to the /api/v1/explore/form_data POST endpoint to store chart configuration data temporarily.

Args: form_data: Chart configuration including datasource, metrics, and visualization settings

Returns: A dictionary with a key that can be used to retrieve the form data

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
form_dataYes

Implementation Reference

  • The main handler function decorated with @mcp.tool() that executes the tool logic by calling the Superset API endpoint /api/v1/explore/form_data with the provided form_data.
    @mcp.tool() @requires_auth @handle_api_errors async def superset_explore_form_data_create( ctx: Context, form_data: Dict[str, Any] ) -> Dict[str, Any]: """ Create form data for chart exploration Makes a request to the /api/v1/explore/form_data POST endpoint to store chart configuration data temporarily. Args: form_data: Chart configuration including datasource, metrics, and visualization settings Returns: A dictionary with a key that can be used to retrieve the form data """ return await make_api_request( ctx, "post", "/api/v1/explore/form_data", data=form_data )

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