aws-geocode-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
aws-geocode-mcp by Kanahiro | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 28 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsOtherDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
aws-geocode-mcp · Summary
An MCP server for geocoding using Amazon Location Service that converts addresses to coordinates.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
aws-geocode-mcp · Use cases
- Converting physical addresses to latitude and longitude coordinates for mapping applications
- Implementing location-based search functionality in AI assistants
- Enabling proximity-based queries for nearby businesses or points of interest
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
aws-geocode-mcp · Install
Installation
- First, obtain an API key from AWS Management Console with the following scopes:
- Geocode - SearchNearby
- Install the package globally:
npm install -g aws-geocode-mcp- Configure Claude Desktop by adding this to your
claude_desktop_config.json:
{
"mcpServers": {
"geocoder": {
"command": "npx",
"args": ["aws-geocode-mcp"],
"env": {
"AMAZON_LOCATION_API_KEY": "YOUR_API_KEY",
"AWS_REGION": "us-east-1"
}
}
}
}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}