Skip to main content
Glama
aptro

Superset MCP Integration

by aptro

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
NameRequiredDescriptionDefault
stateYes

Implementation Reference

  • 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)

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