mcp-google-map vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-google-map by cablate | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 302 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-google-map · Summary
A comprehensive MCP server with 18 Google Maps API tools for geolocation, routing, search, and location-based intelligence.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-google-map · Use cases
- Travel planning and itinerary creation with optimized multi-stop routes
- Business location analysis and competitor tracking for local SEO
- Real-time location-based information retrieval for conversational AI
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-google-map · Install
Installation
**1. stdio mode (Recommended)** Add to Claude Desktop configuration:
{
"mcpServers": {
"google-maps": {
"command": "npx",
"args": ["-y", "@cablate/mcp-google-map", "--stdio"],
"env": {
"GOOGLE_MAPS_API_KEY": "YOUR_API_KEY"
}
}
}
}**2. HTTP server mode**
npx @cablate/mcp-google-map --port 3000 --apikey "YOUR_API_KEY"Configure client:
{
"mcpServers": {
"google-maps": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}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