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 | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this 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-mcpconda
conda install -c conda-forge holoviz-mcpDocker
docker pull ghcr.io/marcskovmadsen/holoviz-mcpClaude 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