time vs mcp-batchit
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-batchit by ryanjoachim | |
|---|---|---|
| Stars | ★ 85,748 | ★ 59 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-batchit · Summary
MCP BatchIt aggregates multiple tool calls into single batch requests, reducing overhead and token usage in AI agent workflows.
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
mcp-batchit · Use cases
- Batching multiple file operations (read, write, create directory) into a single request
- Reducing API token overhead in multi-step AI agent workflows
- Executing parallel tool calls to improve response time in AI applications
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"]
}
}
}mcp-batchit · Install
git clone https://github.com/ryanjoachim/mcp-batchit.git
cd mcp-batchit
npm install
npm run build
npm startFor Claude Desktop, add to config.json:
{
"mcpServers": {
"batchit": {
"command": "node",
"args": ["/path/to/mcp-batchit/dist/index.js"]
}
}
}