MCP Catalogs
Home

ultimate_mcp_server vs google_ads_mcp

Side-by-side comparison to help you pick between these two MCP servers.

ultimate_mcp_server
by Dicklesworthstone
google_ads_mcp
by google-marketing-solutions
Stars★ 149★ 203
30d uses
Score8546
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
E-commerceAI / LLM ToolsDeveloper Tools
LanguagePythonPython
Last commit2 mo agothis month

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.

google_ads_mcp · Summary

Google Ads MCP server enables LLMs to interact with Google Ads API via GAQL queries and ad management tools.

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

google_ads_mcp · Use cases

  • Automate Google Ads reporting by querying campaign metrics through natural language
  • Create and manage advertising campaigns directly through conversational AI interfaces
  • Generate performance insights across multiple Google Ads accounts

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

google_ads_mcp · Install

Installation

  1. Install Python 3.12 with pipx or uv
  2. Set up Google Ads credentials in a google-ads.yaml file with required credentials
  3. Configure environment variables (optional): ADS_MCP_ENABLE_MUTATIONS, GOOGLE_ADS_CREDENTIALS, USE_GOOGLE_OAUTH_ACCESS_TOKEN
Launch with pipx
pipx run --spec git+https://github.com/google-marketing-solutions/google_ads_mcp.git run-mcp-server
Local development
uv pip sync
uv run -m ads_mcp.server
Claude Desktop Configuration
{
  "mcpServers": {
    "GoogleAds": {
      "command": "pipx",
      "args": [
        "run",
        "--spec",
        "git+https://github.com/google-marketing-solutions/google_ads_mcp.git",
        "run-mcp-server"
      ],
      "env": {
        "GOOGLE_ADS_CREDENTIALS": "PATH_TO_YAML"
      },
      "timeout": 30000
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.