everything vs mcp-server-unitycatalog
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server-unitycatalog by ognis1205 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 14 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-unitycatalog · Summary
Unity Catalog MCP server that provides database functions as tools for AI assistants.
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-server-unitycatalog · Use cases
- AI assistants executing cataloged ML functions
- Automating data preprocessing workflows through AI
- Dynamic function discovery and execution in AI systems
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-everythingmcp-server-unitycatalog · Install
Installation
Using uv:
uvx run mcp-server-unitycatalog --uc_server <your_url> --uc_catalog <catalog_name> --uc_schema <schema_name>Using Docker:
docker run --rm -i mcp/unitycatalog --uc_server <your_url> --uc_catalog <catalog_name> --uc_schema <schema_name>Configuration with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"unitycatalog": {
"command": "uv",
"args": [
"--directory",
"/<path to your local repository>/mcp-server-unitycatalog",
"run",
"mcp-server-unitycatalog",
"--uc_server",
"<your unity catalog url>",
"--uc_catalog",
"<your catalog name>",
"--uc_schema",
"<your schema name>"
]
}
}
}