time vs AgentRunKit
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | AgentRunKit by Tom-Ryder | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | Swift |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
AgentRunKit · Summary
Swift 6 agent SDK with type-safe tools, streaming support, and MCP integration.
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
AgentRunKit · Use cases
- Building iOS and macOS applications with LLM agents
- Creating development tools with type-safe AI capabilities
- Implementing local-first agents with Apple Silicon MLX support
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"]
}
}
}AgentRunKit · Install
Install via Swift Package Manager:
.package(url: "https://github.com/Tom-Ryder/AgentRunKit.git", from: "2.4.0")
.target(name: "YourApp", dependencies: ["AgentRunKit"])For Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"agentrunkit": {
"command": "swift",
"args": ["run", "agentrunkit"],
"env": {}
}
}
}