adloop vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
adloop by kLOsk | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 155 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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": {}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.