time vs autotask-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | autotask-mcp by wyre-technology | |
|---|---|---|
| Stars | ★ 85,748 | ★ 36 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | ProductivityDeveloper ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
autotask-mcp · Summary
MCP server providing 39 tools for Kaseya Autotask PSA integration, enabling AI to manage tickets, projects, time entries, and companies through natural language.
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
autotask-mcp · Use cases
- Service desk automation: AI can search and update tickets without leaving the chat interface
- Project management: Create and manage projects directly through AI commands
- Time tracking: Automatically log time entries for completed tasks
- Customer service: Quickly retrieve company and contact information during support conversations
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"]
}
}
}autotask-mcp · Install
Installation
Option 1: MCPB Bundle (Claude Desktop)
- Download
autotask-mcp.mcpbfrom the [latest release](https://github.com/wyre-technology/autotask-mcp/releases/latest) - Open the file (double-click or drag into Claude Desktop)
- Enter your Autotask credentials when prompted
Option 2: Claude Code (CLI)
claude mcp add autotask-mcp \
-e AUTOTASK_USERNAME=your-user@company.com \
-e AUTOTASK_SECRET=your-secret \
-e AUTOTASK_INTEGRATION_CODE=your-code \
-- npx -y github:wyre-technology/autotask-mcpOption 3: Docker
{
"mcpServers": {
"autotask": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "MCP_TRANSPORT=stdio",
"-e", "AUTOTASK_USERNAME=your-user@company.com",
"-e", "AUTOTASK_SECRET=your-secret",
"-e", "AUTOTASK_INTEGRATION_CODE=your-code",
"--entrypoint", "node",
"ghcr.io/wyre-technology/autotask-mcp:latest",
"dist/entry.js"
]
}
}
}```