mcp-google-map vs EVE-Online-OSINT-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-google-map by cablate | EVE-Online-OSINT-MCP by kongyo2 | |
|---|---|---|
| Stars | ★ 302 | ★ 10 |
| 30d uses | — | — |
| Score | 52 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Other |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | 9 mo ago |
mcp-google-map · Summary
A comprehensive MCP server with 18 Google Maps API tools for geolocation, routing, search, and location-based intelligence.
EVE-Online-OSINT-MCP · Summary
An MCP server providing OSINT tools for EVE Online characters, corporations, and alliances through ESI, EveWho, and zKillboard APIs.
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
EVE-Online-OSINT-MCP · Use cases
- Gathering intelligence on EVE Online players before diplomatic interactions
- Analyzing corporation strength and activity before recruiting
- Monitoring alliance growth and movements for strategic planning
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"
}
}
}EVE-Online-OSINT-MCP · Install
Installation
Via Smithery
npx -y @smithery/cli install @kongyo2/eve-online-osint-mcp --client claudeManual Installation
git clone https://github.com/kongyo2/EVE-Online-OSINT-MCP.git
cd EVE-Online-OSINT-MCP
npm install
npm run startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"eve-osint": {
"command": "node",
"args": ["./dist/index.js"],
"env": {}
}
}
}