← Registry

Learning Resources

superset.sh

Provides search and read access to Apache Superset documentation.

3 endpoints2 known toolsFirst detected August 4, 2026Last detected August 4, 2026

ENDPOINT 1

https://api.superset.sh/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.superset-sh]
url = "https://api.superset.sh/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "superset-sh": {
      "type": "http",
      "url": "https://api.superset.sh/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: superset-sh
Remote MCP URL: https://api.superset.sh/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "superset-sh": {
      "url": "https://api.superset.sh/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "superset-sh": {
      "type": "http",
      "url": "https://api.superset.sh/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "superset-sh bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "superset-sh",
  "transport": "streamable-http",
  "url": "https://api.superset.sh/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://api.superset.sh/api/v2/agent/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.superset-sh]
url = "https://api.superset.sh/api/v2/agent/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "superset-sh": {
      "type": "http",
      "url": "https://api.superset.sh/api/v2/agent/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: superset-sh
Remote MCP URL: https://api.superset.sh/api/v2/agent/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "superset-sh": {
      "url": "https://api.superset.sh/api/v2/agent/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "superset-sh": {
      "type": "http",
      "url": "https://api.superset.sh/api/v2/agent/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "superset-sh bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "superset-sh",
  "transport": "streamable-http",
  "url": "https://api.superset.sh/api/v2/agent/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 3

https://docs.superset.sh/mcp

No auth detected

MCP server metadata

Name
superset-docs
Version
1.0.0
Capabilities
tools.listChanged
Server instructions

Read-only access to the Superset documentation (docs.superset.sh). Superset runs parallel AI coding agents in isolated Git worktrees. Call docs_search to find pages by keyword, then docs_read to fetch a page as markdown. No authentication required; nothing here mutates state. To act on a Superset account (workspaces, agents, tasks), use the product MCP server at https://api.superset.sh/mcp instead.

Known tools 2

docs_search

Search the Superset documentation by keyword.

Inferred read-only
docs_read

Read one Superset documentation page as markdown.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.superset-docs]
url = "https://docs.superset.sh/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "superset-docs": {
      "type": "http",
      "url": "https://docs.superset.sh/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: superset-docs
Remote MCP URL: https://docs.superset.sh/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "superset-docs": {
      "url": "https://docs.superset.sh/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "superset-docs": {
      "type": "http",
      "url": "https://docs.superset.sh/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "superset-docs",
  "transport": "streamable-http",
  "url": "https://docs.superset.sh/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for superset.sh was fetched 2026-08-12T10:37:00.173Z.

Trust status Trusted

superset.sh is assessed as Trusted: Domain runs a meaningful technology spend, consistent with a real business.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.