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 | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this 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-everythingmcp-server-starrocks · Install
Install the MCP server using uv:
uv add mcp-server-starrocksConfigure 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