aws-geocode-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
aws-geocode-mcp by Kanahiro | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 28 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具其它开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
aws-geocode-mcp · 概述
使用 Amazon Location Service 进行地理编码的 MCP 服务器,可将地址转换为坐标。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
aws-geocode-mcp · 使用场景
- 将物理地址转换为经纬度坐标用于地图应用
- 在 AI 助手中实现基于位置的搜索功能
- 支持对附近商家或兴趣点进行基于位置的查询
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
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"
}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything