time vs openagent
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | openagent by the-open-agent | |
|---|---|---|
| Stars | ★ 85,748 | ★ 4,760 |
| 30d uses | — | — |
| Score | 77 | 58 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Go |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
openagent · Summary
OpenAgent is a comprehensive AI assistant platform supporting MCP tool integration and agent automation.
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
openagent · Use cases
- Automating web scraping and data collection
- Building custom AI assistants with domain-specific knowledge
- Creating autonomous workflows for office automation
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"]
}
}
}openagent · Install
Installation
Quick Install
**macOS / Linux / WSL**
curl -fsSL https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.sh | bash**Windows (PowerShell)**
irm https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.ps1 | iexFrom Source
# Backend
go build
# Frontend
cd web && yarn install && yarn startMCP Integration in Claude Desktop
Add to your Claude Desktop config.json:
"mcpServers": {
"openagent": {
"command": "path/to/openagent",
"args": ["--mcp"]
}
}