MCP Catalogs
Home

everything vs orionbelt-analytics

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

everything
by modelcontextprotocol
orionbelt-analytics
by ralfbecher
Stars★ 85,748★ 29
30d uses
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
DatabaseDeveloper ToolsKnowledge Graph
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

orionbelt-analytics · Summary

Ontology-based MCP server analyzing database schemas and generating RDF/OWL ontologies with SQL mappings for Text-to-SQL.

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

orionbelt-analytics · Use cases

  • Enterprise data analysis with natural language queries across multiple database systems
  • Schema analysis and ontology generation for knowledge graph applications
  • Automated SQL validation with fan-trap prevention to ensure query correctness

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

orionbelt-analytics · Install

Installation

git clone https://github.com/ralfbecher/orionbelt-analytics
cd orionbelt-analytics
uv sync

Configure environment variables:

cp .env.template .env

Run the server:

uv run server.py

For Claude Desktop, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "OrionBelt-Analytics": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:9000/mcp",
        "--transport",
        "http-only"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.