Skip to main content
Glama
aptro

Superset MCP Integration

by aptro

superset_explore_permalink_get

Retrieve saved chart exploration states in Apache Superset using permalink keys to restore previous analysis configurations.

Instructions

Get a permalink for chart exploration

Makes a request to the /api/v1/explore/permalink/{key} endpoint to retrieve a previously saved exploration state.

Args: key: Key of the permalink to retrieve

Returns: A dictionary with the stored exploration state

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYes

Implementation Reference

  • Handler function implementing the superset_explore_permalink_get tool. Retrieves a saved chart exploration permalink state from Superset using the provided key by calling the Superset API endpoint /api/v1/explore/permalink/{key}.
    @mcp.tool()
    @requires_auth
    @handle_api_errors
    async def superset_explore_permalink_get(ctx: Context, key: str) -> Dict[str, Any]:
        """
        Get a permalink for chart exploration
    
        Makes a request to the /api/v1/explore/permalink/{key} endpoint to retrieve
        a previously saved exploration state.
    
        Args:
            key: Key of the permalink to retrieve
    
        Returns:
            A dictionary with the stored exploration state
        """
        return await make_api_request(ctx, "get", f"/api/v1/explore/permalink/{key}")
Install Server

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