superset_explore_form_data_get
Retrieve stored chart configuration data from Apache Superset using a unique key to access previously saved exploration settings.
Instructions
Get form data for chart exploration
Makes a request to the /api/v1/explore/form_data/{key} endpoint to retrieve previously stored chart configuration.
Args: key: Key of the form data to retrieve
Returns: A dictionary with the stored chart configuration
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
Implementation Reference
- main.py:1690-1707 (handler)The main handler function implementing the superset_explore_form_data_get tool. It makes an authenticated GET request to Superset's /api/v1/explore/form_data/{key} endpoint to retrieve stored chart exploration form data using the make_api_request helper.@mcp.tool() @requires_auth @handle_api_errors async def superset_explore_form_data_get(ctx: Context, key: str) -> Dict[str, Any]: """ Get form data for chart exploration Makes a request to the /api/v1/explore/form_data/{key} endpoint to retrieve previously stored chart configuration. Args: key: Key of the form data to retrieve Returns: A dictionary with the stored chart configuration """ return await make_api_request(ctx, "get", f"/api/v1/explore/form_data/{key}")