MCP Catalogs
Home

holoviz-mcp vs everything

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

holoviz-mcp
by MarcSkovMadsen
everything
by modelcontextprotocol
Stars★ 33★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

holoviz-mcp · Summary

An MCP server providing intelligent access to HoloViz ecosystem for building data visualizations and dashboards.

everything · Summary

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

holoviz-mcp · Use cases

  • Creating interactive data visualizations with Python libraries
  • Building dashboards with Panel and hvPlot
  • Generating contextual code assistance for data visualization projects

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

holoviz-mcp · Install

Installation

pip
pip install holoviz-mcp
conda
conda install -c conda-forge holoviz-mcp
Docker
docker pull ghcr.io/marcskovmadsen/holoviz-mcp
Claude Desktop

Add to your Claude Desktop config:

"mcpServers": {
  "holoviz": {
    "command": "python",
    "args": ["-m", "holoviz_mcp.server"],
    "env": {
      "PYTHONPATH": "${path}" 
    }
  }
}

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.