time vs agenite
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | agenite by subeshb1 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 69 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | MDX |
| Last commit | this month | 8 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
agenite · Summary
Agenite is a TypeScript framework for building AI agents with MCP support for connecting to data sources.
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
agenite · Use cases
- Building AI assistants with specialized tool capabilities
- Creating multi-agent systems for complex problem solving
- Developing type-safe agent applications with various LLM providers
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"]
}
}
}agenite · Install
Install the MCP package as part of the Agenite framework:
npm install @agenite/agent @agenite/tool @agenite/llm @agenite/mcp
npm install @agenite/openai # or other providerFor Claude Desktop integration, add this to your claude_desktop_config.json:
{
"mcpServers": {
"agenite": {
"command": "npx",
"args": ["@agenite/mcp"],
"env": {}
}
}
}