everything vs mcp-trino
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-trino by tuannvm | |
|---|---|---|
| Stars | ★ 85,748 | ★ 103 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-trino · Summary
A high-performance Go implementation of MCP server for Trino SQL query engine with dual CLI and MCP modes.
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-trino · Use cases
- AI assistants running SQL analytics on large datasets through Trino
- Development teams using MCP-compatible tools (Claude, Cursor, Windsurf) to query data
- Organizations implementing query attribution and user impersonation in Trino via AI tools
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-trino · Install
Installation
# Homebrew
brew install tuannvm/mcp/mcp-trino
# Or one-liner (macOS/Linux)
curl -fsSL https://raw.githubusercontent.com/tuannvm/mcp-trino/main/install.sh | bashClaude Desktop Configuration
Add to Claude Desktop config.json:
"mcpServers": {
"trino": {
"command": "mcp-trino",
"args": []
}
}