adloop vs everything
Side-by-side comparison to help you pick between these two MCP servers.
adloop by kLOsk | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 155 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
adloop · Summary
AdLoop is an MCP server providing read/write access to Google Ads and GA4 with safety guardrails.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
adloop · Use cases
- Diagnose conversion drops by comparing Google Ads clicks with GA4 sessions
- Manage Google Ads campaigns through natural language with safety previews
- Validate tracking code effectiveness by comparing events in codebase vs GA4
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
adloop · Install
Install with pip: pip install adloop
For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"adloop": {
"command": "python",
"args": ["-m", "adloop"],
"env": {}
}
}
}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