mcp-google-map vs mcp-server-weather-js
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-google-map by cablate | mcp-server-weather-js by hideya | |
|---|---|---|
| Stars | ★ 302 | ★ 13 |
| 30天用量 | — | — |
| 综合分 | 52 | 33 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具其它 | weather其它 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 1 个月前 | 14 个月前 |
mcp-google-map · 概述
一个功能全面的 MCP 服务器,包含 18 个 Google Maps API 工具,提供地理编码、路线规划、搜索和位置智能功能。
mcp-server-weather-js · 概述
Node.js 编写的 MCP 服务器,提供美国天气预报和警报功能。
mcp-google-map · 使用场景
- 旅行规划和行程创建,包含优化多站点路线
- 企业位置分析和竞争对手跟踪,用于本地 SEO
- 会话式 AI 的实时位置信息检索
mcp-server-weather-js · 使用场景
- 检查美国特定位置的天气预报
- 接收特定州的天气警报
- 将天气信息集成到 AI 工作流程中
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"
}
}
}mcp-server-weather-js · 安装
安装
- 安装 npm 包:
npm install @h1deya/mcp-server-weather- 添加到 Claude Desktop 配置:
编辑你的 claude_desktop_config.json 并添加:
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@h1deya/mcp-server-weather"
],
}
}
}