everything vs ga4-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ga4-mcp-server by spindle79 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ga4-mcp-server · Summary
Google Analytics 4 MCP server exposing metrics to AI agents with daily/monthly breakdowns and dual MCP/REST endpoints.
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
ga4-mcp-server · Use cases
- AI agents analyzing website performance metrics for content optimization
- Digital marketers extracting conversion data and traffic patterns for campaigns
- Content creators evaluating page engagement metrics to improve user experience
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-everythingga4-mcp-server · Install
Installation
- Install dependencies:
pnpm install- Set up environment variables:
GA_PROPERTY_ID=your_ga4_property_id
GOOGLE_APPLICATION_CREDENTIALS=path/to/your/credentials.json
PORT=3001 # optional, defaults to 3001- Start the server:
pnpm devFor Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"ga4": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"GA_PROPERTY_ID": "your_ga4_property_id",
"GOOGLE_APPLICATION_CREDENTIALS": "path/to/your/credentials.json"
}
}
}
}