time vs claude-mcp-scheduler
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | claude-mcp-scheduler by tonybentley | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
claude-mcp-scheduler · Summary
A cron-based scheduler that uses Claude API with MCP servers for tool calls in scheduled AI tasks.
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
claude-mcp-scheduler · Use cases
- Running automated AI reports on a schedule
- Processing data files at regular intervals
- Integrating AI capabilities into CI/CD pipelines
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"]
}
}
}claude-mcp-scheduler · Install
Installation
- Clone the repository:
git clone https://github.com/tonybentley/claude-mcp-scheduler.git
cd claude-mcp-scheduler- Install dependencies:
npm install- Create a
.envfile with your Anthropic API key:
ANTHROPIC_API_KEY=your-api-key-here- Copy the example configuration:
cp config/config.example.json config/config.jsonTo use with Claude Desktop, add the following to your Claude Desktop configuration:
{
"mcpServers": {
"claude-mcp-scheduler": {
"command": "node",
"args": ["path/to/claude-mcp-scheduler/dist/index.js"]
}
}
}