aws-geocode-mcp vs time
并排对比,帮你在这两个 MCP server 之间做选择。
aws-geocode-mcp by Kanahiro | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 28 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具其它开发者工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
aws-geocode-mcp · 概述
使用 Amazon Location Service 进行地理编码的 MCP 服务器,可将地址转换为坐标。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
aws-geocode-mcp · 使用场景
- 将物理地址转换为经纬度坐标用于地图应用
- 在 AI 助手中实现基于位置的搜索功能
- 支持对附近商家或兴趣点进行基于位置的查询
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
aws-geocode-mcp · 安装
安装
- 首先,从 AWS 管理控制台获取具有以下权限范围的 API 密钥:
- Geocode - SearchNearby
- 全局安装软件包:
npm install -g aws-geocode-mcp- 通过将以下内容添加到您的
claude_desktop_config.json来配置 Claude Desktop:
{
"mcpServers": {
"geocoder": {
"command": "npx",
"args": ["aws-geocode-mcp"],
"env": {
"AMAZON_LOCATION_API_KEY": "YOUR_API_KEY",
"AWS_REGION": "us-east-1"
}
}
}
}time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}