everything vs gtm-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | gtm-mcp-server by paolobietolini | |
|---|---|---|
| Stars | ★ 85,748 | ★ 86 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsE-commerceAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gtm-mcp-server · Summary
Google Tag Manager MCP server that enables natural language control of GTM containers through AI assistants.
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
gtm-mcp-server · Use cases
- Build complete GA4 ecommerce tracking setups through natural language
- Manage multiple client containers at scale for agencies
- Generate documentation and audit reports for existing GTM setups
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-everythinggtm-mcp-server · Install
Installation
**Claude Desktop:**
{
"mcpServers": {
"gtm": {
"url": "https://mcp.gtmeditor.com/authorize"
}
}
}**Claude Code CLI:**
claude mcp add -t http gtm https://mcp.gtmeditor.com**ChatGPT:**
- Go to OpenAI Apps Platform
- Add MCP integration with URL:
https://mcp.gtmeditor.com
**Gemini CLI:**
gemini mcp add --transport http --url https://mcp.gtmeditor.com gtm**Self-hosted Docker:**
git clone https://github.com/paolobietolini/gtm-mcp-server.git
cd gtm-mcp-server
cat > .env << 'EOF'
GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
JWT_SECRET=$(openssl rand -base64 32)
BASE_URL=http://localhost:8080
EOF
docker compose up -