MCP Catalogs
Home

everything vs mcp-server-starrocks

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

everything
by modelcontextprotocol
mcp-server-starrocks
by StarRocks
Stars★ 85,748★ 171
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
DatabaseDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

mcp-server-starrocks · Summary

Official MCP server connecting AI assistants to StarRocks databases for SQL execution, data exploration, and visualization.

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-starrocks · Use cases

  • AI assistants querying StarRocks databases to retrieve and analyze business data
  • Automated data exploration and schema understanding for AI systems
  • Generating visual charts from SQL query results directly within AI workflows

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

mcp-server-starrocks · Install

Install the MCP server using uv:

uv add mcp-server-starrocks

Configure in Claude Desktop:

{
  "mcpServers": {
    "mcp-server-starrocks": {
      "url": "http://localhost:8000/mcp"
    }
  }
}

Start the server:

uv run mcp-server-starrocks --mode streamable-http --port 8000
Comparison generated from public README + GitHub signals. Last updated automatically.