mcp-google-ads vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-google-ads by cohnen | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 609 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | FinanceProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 7 mo ago | this month |
mcp-google-ads · Summary
A Python MCP server that bridges Google Ads with Claude AI for natural language advertising data analysis and management.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-google-ads · Use cases
- Analyze campaign performance metrics through natural language queries
- Generate visual reports of advertising data with Claude
- Optimize ad budgets and bid strategies based on performance insights
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
mcp-google-ads · Install
- Clone the repository:
git clone https://github.com/ixigo/mcp-google-ads.git - Set up Google Ads API credentials (OAuth or Service Account)
- Create a virtual environment:
uv venv .venv - Activate the environment:
source .venv/bin/activate - Install dependencies:
uv pip install -r requirements.txt - Configure your
.envfile with credentials - Add to Claude Desktop config:
{
"mcpServers": {
"google-ads": {
"command": "python",
"args": ["-m", "mcp_google_ads.server"],
"env": {
"GOOGLE_ADS_DEVELOPER_TOKEN": "your-token",
"GOOGLE_ADS_CLIENT_ID": "your-client-id",
"GOOGLE_ADS_CLIENT_SECRET": "your-client-secret",
"GOOGLE_ADS_REFRESH_TOKEN": "your-refresh-token",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "your-id"
}
}
}
}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.