MCP Catalogs
Home

mcp-superset vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-superset
by bintocher
everything
by modelcontextprotocol
Stars★ 36★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsDatabaseProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

mcp-superset · Summary

A comprehensive MCP server with 137 tools for managing Apache Superset dashboards, charts, datasets, and security features.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-superset · Use cases

  • Automating dashboard creation and management for business intelligence teams
  • Managing user access and permissions across large Superset deployments
  • Extracting data from charts and datasets for reporting and analysis
  • Automating database connection management and validation
  • Implementing comprehensive row-level security policies

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-superset · Install

Installation

# From PyPI
pip install mcp-superset

# With uv (recommended)
uv pip install mcp-superset

# Run without installing
uvx mcp-superset

Configuration

Create a .env file with your Superset credentials:

SUPERSET_BASE_URL=https://superset.example.com
SUPERSET_USERNAME=admin
SUPERSET_PASSWORD=your_password

Running

# Using CLI
mcp-superset

# With stdio transport (for Claude Desktop, etc.)
mcp-superset --transport stdio

Claude Desktop Configuration

{
  "mcpServers": {
    "superset": {
      "command": "uvx",
      "args": ["mcp-superset", "--transport", "stdio"],
      "env": {
        "SUPERSET_BASE_URL": "https://superset.example.com",
        "SUPERSET_USERNAME": "admin",
        "SUPERSET_PASSWORD": "your_password"
      }
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.