mcp-bigquery-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-bigquery-server by ergut | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 139 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | DatabaseAI / LLM ToolsSecurity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-bigquery-server · Summary
A secure MCP server enabling LLMs to query BigQuery datasets with field-level data protection.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-bigquery-server · Use cases
- Natural language analysis of business data stored in BigQuery
- Healthcare data analysis with HIPAA compliance through field-level restrictions
- Financial reporting with automatic protection of sensitive columns
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-bigquery-server · Install
Installation
- **Install prerequisites**: Node.js 14+, Google Cloud project with BigQuery enabled, and Claude Desktop
- **Authenticate with Google Cloud**:
``bash gcloud auth application-default login ``
- **Configure Claude Desktop** (
claude_desktop_config.json):
``json { "mcpServers": { "bigquery": { "command": "npx", "args": [ "-y", "@ergut/mcp-bigquery-server", "--project-id", "your-project-id" ] } } } ``
For Protected Mode with sensitive data, add --config-file /path/to/config.json to the args.
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