everything vs google-tag-manager-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | google-tag-manager-mcp-server by stape-io | |
|---|---|---|
| Stars | ★ 85,748 | ★ 153 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
google-tag-manager-mcp-server · Summary
MCP server for Google Tag Manager with OAuth authentication, enabling Claude to interact with GTM API.
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
google-tag-manager-mcp-server · Use cases
- Automating Google Tag Manager container operations through Claude
- Managing tags, triggers, and variables programmatically
- Integrating GTM workflows with AI assistants for marketing automation
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-everythinggoogle-tag-manager-mcp-server · Install
Installation
- Open Claude Desktop and navigate to Settings -> Developer -> Edit Config
- Add the following configuration to your MCP servers:
{
"mcpServers": {
"gtm-mcp-server": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gtm-mcp.stape.ai/mcp"
]
}
}
}- Save the configuration and restart Claude Desktop
- Complete the OAuth authentication flow when prompted
Troubleshooting
If you encounter issues, try clearing the MCP cache by running:
rm -rf ~/.mcp-authThen restart your MCP client.