time vs agentify
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | agentify by MonadWorks | |
|---|---|---|
| Stars | ★ 85,748 | ★ 25 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
agentify · Summary
Converts OpenAPI specs to MCP servers and other AI agent interfaces with a single command.
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
agentify · Use cases
- Convert existing REST API documentation to an MCP server for use with AI assistants
- Generate documentation files for multiple AI development platforms from a single OpenAPI spec
- Create CLI tools from API specifications for command-line interaction
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"]
}
}
}agentify · Install
Install via npm:
npm install -g agentify-cliTransform an OpenAPI spec to MCP server:
npx agentify-cli transform https://petstore.swagger.io/v2/swagger.jsonFor Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"my-api": {
"command": "node",
"args": ["/path/to/generated/mcp-server.js"]
}
}
}