aws-geocode-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
aws-geocode-mcp by Kanahiro | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 28 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具其它开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
aws-geocode-mcp · 概述
使用 Amazon Location Service 进行地理编码的 MCP 服务器,可将地址转换为坐标。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
aws-geocode-mcp · 使用场景
- 将物理地址转换为经纬度坐标用于地图应用
- 在 AI 助手中实现基于位置的搜索功能
- 支持对附近商家或兴趣点进行基于位置的查询
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 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"
}
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。