mcp-google-map vs EVE-Online-OSINT-MCP
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-google-map by cablate | EVE-Online-OSINT-MCP by kongyo2 | |
|---|---|---|
| Stars | ★ 302 | ★ 10 |
| 30天用量 | — | — |
| 综合分 | 52 | 38 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具其它 | 其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 9 个月前 |
mcp-google-map · 概述
一个功能全面的 MCP 服务器,包含 18 个 Google Maps API 工具,提供地理编码、路线规划、搜索和位置智能功能。
EVE-Online-OSINT-MCP · 概述
一个提供EVE在线角色、公司联盟OSINT工具的MCP服务器,通过ESI、EveWho和zKillboard API获取信息。
mcp-google-map · 使用场景
- 旅行规划和行程创建,包含优化多站点路线
- 企业位置分析和竞争对手跟踪,用于本地 SEO
- 会话式 AI 的实时位置信息检索
EVE-Online-OSINT-MCP · 使用场景
- 在外交互动前收集EVE在线玩家情报
- 在招募前分析公司实力和活动
- 为战略规划监控联盟发展和动向
mcp-google-map · 安装
安装
**1. stdio 模式(推荐)** 添加到 Claude Desktop 配置中:
{
"mcpServers": {
"google-maps": {
"command": "npx",
"args": ["-y", "@cablate/mcp-google-map", "--stdio"],
"env": {
"GOOGLE_MAPS_API_KEY": "您的_API_KEY"
}
}
}
}**2. HTTP 服务器模式**
npx @cablate/mcp-google-map --port 3000 --apikey "您的_API_KEY"配置客户端:
{
"mcpServers": {
"google-maps": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}EVE-Online-OSINT-MCP · 安装
安装
通过Smithery安装
npx -y @smithery/cli install @kongyo2/eve-online-osint-mcp --client claude手动安装
git clone https://github.com/kongyo2/EVE-Online-OSINT-MCP.git
cd EVE-Online-OSINT-MCP
npm install
npm run startClaude Desktop配置
添加到claude_desktop_config.json:
{
"mcpServers": {
"eve-osint": {
"command": "node",
"args": ["./dist/index.js"],
"env": {}
}
}
}