google-cloud-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
google-cloud-mcp by krzko | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 78 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Cloud StorageDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 5 mo ago | this month |
google-cloud-mcp · Summary
A comprehensive MCP server providing access to multiple Google Cloud services including billing, monitoring, IAM, Spanner, and more.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
google-cloud-mcp · Use cases
- DevOps engineers monitoring cloud infrastructure costs and performance
- Developers debugging applications using error reporting and logs
- Security teams auditing IAM permissions and access controls
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
google-cloud-mcp · Install
# Clone and install the repository
git clone https://github.com/krzko/google-cloud-mcp.git
cd google-cloud-mcp
pnpm install
pnpm build
# Authenticate to Google Cloud
gcloud auth application-default login
# Configure in Claude Desktop
{
"mcpServers": {
"google-cloud-mcp": {
"command": "node",
"args": ["/path/to/google-cloud-mcp/dist/index.js"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json"
}
}
}
}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