superset_explore_permalink_create
Generate shareable links for specific chart exploration states in Apache Superset, enabling easy collaboration and reference to visual data analysis.
Instructions
Create a permalink for chart exploration
Makes a request to the /api/v1/explore/permalink POST endpoint to generate a shareable link to a specific chart exploration state.
Args: state: State data for the permalink including form_data
Returns: A dictionary with a key that can be used to access the permalink
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| state | Yes |
Implementation Reference
- main.py:1709-1728 (handler)The handler function implementing the 'superset_explore_permalink_create' tool. It sends a POST request to Superset's /api/v1/explore/permalink endpoint with the provided state to create a shareable permalink for chart exploration states.@mcp.tool() @requires_auth @handle_api_errors async def superset_explore_permalink_create( ctx: Context, state: Dict[str, Any] ) -> Dict[str, Any]: """ Create a permalink for chart exploration Makes a request to the /api/v1/explore/permalink POST endpoint to generate a shareable link to a specific chart exploration state. Args: state: State data for the permalink including form_data Returns: A dictionary with a key that can be used to access the permalink """ return await make_api_request(ctx, "post", "/api/v1/explore/permalink", data=state)