MCP Catalogs
Home

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
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityDeveloper ToolsOps & Infra
LanguageTypeScriptTypeScript
Last committhis monththis 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-everything

autotask-mcp · Install

Installation

Option 1: MCPB Bundle (Claude Desktop)

  1. Download autotask-mcp.mcpb from the [latest release](https://github.com/wyre-technology/autotask-mcp/releases/latest)
  2. Open the file (double-click or drag into Claude Desktop)
  3. 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-mcp

Option 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"
      ]
    }
  }
}```
Comparison generated from public README + GitHub signals. Last updated automatically.