Install
openclaw skills install notfair-google-ads-agentNotFair Google Ads agent for OpenClaw. Diagnose live Google Ads accounts, audit wasted spend, review search terms, draft negative keywords, inspect policy errors, and propose approval-gated campaign changes through NotFair's hosted MCP server.
openclaw skills install notfair-google-ads-agentUse this skill when the user asks to manage, audit, diagnose, or optimize Google Ads through NotFair.
openclaw plugins install openclaw-notfair
openclaw notfair login
openclaw notfair connect
openclaw notfair status
If the plugin is not authenticated, ask the user to run openclaw notfair login.
const campaigns = await ads.gaql("SELECT campaign.id, campaign.name, campaign.status, metrics.cost_micros, metrics.clicks, metrics.conversions FROM campaign WHERE segments.date DURING LAST_30_DAYS ORDER BY metrics.cost_micros DESC LIMIT 20");
return campaigns.rows.map((row) => ({
id: row.campaign.id,
name: row.campaign.name,
status: row.campaign.status,
spend: row.metrics.cost_micros / 1000000,
clicks: row.metrics.clicks,
conversions: row.metrics.conversions
}));