mcp-google-ads vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-google-ads by cohnen | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 609 | ★ 149 |
| 30d uses | — | — |
| Score | 48 | 85 |
| Official | — | — |
| Categories | FinanceProductivityAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 7 mo ago | 2 mo ago |
mcp-google-ads · Summary
A Python MCP server that bridges Google Ads with Claude AI for natural language advertising data analysis and management.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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"
}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server