-
Notifications
You must be signed in to change notification settings - Fork 4
Quick Start
John Williams edited this page Mar 6, 2026
·
1 revision
Get the agent running in under 5 minutes.
pip install google-ads-agentgit clone https://github.com/itallstartedwithaidea/google-ads-api-agent.git
cd google-ads-api-agent
pip install -r requirements.txtcp .env.example .env
# Edit .env with your API keys (see Credentials Setup)python scripts/validate.pyThis checks:
- All 28 action files exist and are importable
- Required environment variables are set
- Google Ads API connection works (optional live test)
python scripts/cli.pyuvicorn deploy.server:app --host 0.0.0.0 --port 8000docker compose up -d| Command | What It Does |
|---|---|
Test my Google Ads connection |
Verifies API credentials work |
Show me an account summary |
Pulls spend, clicks, conversions for last 30 days |
List my top 5 campaigns by spend |
Ranked campaign performance |
Find wasted spend |
Search terms with zero conversions |
Create a test label called "Agent Test" |
Tests write operations (with confirmation) |
- Credentials Setup — Detailed credential configuration
- Tool Reference — All 47 read + 62 write operations
- Architecture Overview — How the system works