time vs UCAI
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | UCAI by nirholas | |
|---|---|---|
| Stars | ★ 85,748 | ★ 33 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
UCAI · Summary
UCAI is a tool that converts smart contract ABIs to MCP servers, enabling AI agents to interact with blockchain protocols.
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
UCAI · Use cases
- Building AI agents with DeFi capabilities for swapping tokens, providing liquidity, and managing yield farms
- Creating wallet applications that can explain and execute smart contract transactions through natural language
- Developing DAO tooling with AI-powered proposal creation, voting mechanisms, and treasury management
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"]
}
}
}UCAI · Install
Installation
pip install abi-to-mcpQuick Start
Generate an MCP server for a smart contract:
abi-to-mcp generate 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D -o ~/uniswap-server
cd ~/uniswap-server && pip install -r requirements.txtConnect to Claude Desktop by adding to your config:
{
"mcpServers": {
"uniswap": {
"command": "python",
"args": ["/path/to/uniswap-server/server.py"],
"env": {
"RPC_URL": "https://eth.llamarpc.com"
}
}
}
}