everything vs autotask-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | autotask-mcp by wyre-technology | |
|---|---|---|
| Stars | ★ 85,748 | ★ 36 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingautotask-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"
]
}
}
}```