MCP Catalogs
Home

Go-High-Level-MCP-2026-Complete vs everything

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

Go-High-Level-MCP-2026-Complete
by BusyBee3333
everything
by modelcontextprotocol
Stars★ 51★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

Go-High-Level-MCP-2026-Complete · Summary

GoHighLevel MCP server with 834 tools across 40+ categories for CRM automation, voice AI, and marketing workflows.

everything · Summary

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

Go-High-Level-MCP-2026-Complete · Use cases

  • Automate CRM workflows including lead intake, appointment booking, and pipeline management
  • Integrate marketing automation with social media, ads management, and reputation monitoring
  • Build AI agents for customer service with conversation management and voice AI capabilities

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

Go-High-Level-MCP-2026-Complete · Install

Installation

npm install
cp .env.example .env

Set the required environment variables:

GHL_API_KEY=your_private_integration_api_key
GHL_LOCATION_ID=your_location_id
GHL_BASE_URL=https://services.leadconnectorhq.com
GHL_API_VERSION=2021-07-28

Build and run:

npm run build
npm run start:stdio

Claude Desktop Configuration

Add to Claude Desktop's config.json:

{
  "mcpServers": {
    "ghl": {
      "command": "node",
      "args": ["/absolute/path/to/Go-High-Level-MCP-2026-Complete/dist/server.js"],
      "env": {
        "GHL_API_KEY": "your_private_integration_api_key",
        "GHL_LOCATION_ID": "your_location_id",
        "GHL_BASE_URL": "https://services.leadconnectorhq.com",
        "GHL_API_VERSION": "2021-07-28"
      }
    }
  }
}

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