MCP Catalogs
Home

mcp-server-ga4 vs everything

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

mcp-server-ga4
by harshfolio
everything
by modelcontextprotocol
Stars★ 19★ 85,748
30d uses
Score3577
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit14 mo agothis month

mcp-server-ga4 · Summary

An MCP server enabling LLMs to access and analyze Google Analytics 4 data through GA4 Data API.

everything · Summary

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

mcp-server-ga4 · Use cases

  • Generate natural language summaries of website traffic and user behavior data from GA4
  • Create automated reports by having an LLM query GA4 data based on specific business questions
  • Integrate real-time analytics capabilities into AI-powered assistants for immediate insights

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

mcp-server-ga4 · Install

Installation

pip install mcp-server-ga4

Authentication

Set up Google Cloud authentication:

gcloud auth application-default login

Claude Desktop Configuration

{
    "mcpServers": {
        "ga4": {
            "command": "mcp-server-ga4",
            "args": ["--property-id", "YOUR_GA4_PROPERTY_ID"]
        }
    }
}

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.