infura-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
infura-mcp by deflang | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsblockchainAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
infura-mcp · Summary
An MCP server for querying Ethereum blockchain data through Infura APIs using natural language.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
infura-mcp · Use cases
- Blockchain developers needing quick access to Ethereum data without writing custom API calls
- DeFi applications requiring real-time blockchain information
- Smart contract developers testing and debugging on-chain transactions
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
infura-mcp · Install
Installation
- Install the package from PyPI:
pip install infura-mcp- Configure with Claude Desktop by adding this to your config.json:
{
"mcpServers": {
"infura": {
"command": "npx",
"args": [
"-y",
"infura-mcp"
],
"env": {
"INFURA_API_KEY": "your-api-key-here",
"WRITE_TOOLS_ENABLED": false
}
}
}
}- Or run with Docker:
docker run -d --name infura-mcp-server -p 3000:3000 -e INFURA_API_KEY="your-infura-api-key" sumiteshn/infura-mcp:latesttime · 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"]
}
}
}