MCP Catalogs
Home

everything vs zendesk-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
zendesk-mcp-server
by reminia
Stars★ 85,748★ 96
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
CommunicationProductivityDeveloper Tools
LanguageTypeScriptPython
Last committhis month2 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

zendesk-mcp-server · Summary

A comprehensive MCP server for Zendesk integration with ticket management and knowledge base access.

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

zendesk-mcp-server · Use cases

  • Automate customer support ticket management through AI assistants
  • Retrieve and analyze support tickets for trend identification
  • Draft responses to customer inquiries based on ticket context

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

zendesk-mcp-server · Install

Installation

  1. Clone the repository: git clone https://github.com/reminia/zendesk-mcp-server.git
  2. Create virtual environment and install dependencies: uv venv && uv pip install -e .
  3. Copy .env.example to .env and add your Zendesk credentials
  4. Configure in Claude Desktop:
{
  "mcpServers": {
    "zendesk": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/zendesk-mcp-server",
        "run",
        "zendesk"
      ]
    }
  }
}

Docker Option

  1. Copy .env.example to .env and fill in your credentials
  2. Build the image: docker build -t zendesk-mcp-server .
  3. Run with: docker run --rm --env-file /path/to/.env zendesk-mcp-server
Comparison generated from public README + GitHub signals. Last updated automatically.