Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"fullrun": {
"env": {
"FULLRUN_API_KEY": "frun_..."
},
"args": [
"@fullrun/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Google Ads management CLI for AI agents. Works with OpenClaw, Claude, and any agent that can run shell commands.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'fullrun' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked fullrun against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing
DataForSEO API modelcontextprotocol server
MCP server for the PostFast API — schedule and manage social media posts via AI tools
Claude Code plugin: 115 commands, 25 agents, 64 scripts, 67 MCP servers, 143 reference files. Eval/QA layer (hallucination detection, claim verification, A+ through F grading). Multilingual (Sarvam AI, DeepL, Google Cloud Translation). Full execution with approval workflow.
A free SEO research tool using Model Context Protocol (MCP) powered by Ahrefs data. Get backlink analysis, keyword research, traffic estimation, and more — directly in your AI-powered IDE.
MCP Security Weekly
Get CVE alerts and security updates for Fullrun MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Google Ads management CLI for AI agents.
Works with OpenClaw, Claude, and any agent that can run shell commands.
Fullrun is an AI agent that manages Google Ads for you. It monitors your campaigns around the clock, diagnoses problems, adjusts bids, adds missing ad extensions, pauses wasteful keywords, and creates new campaigns — all autonomously.
This CLI brings that same engine to your terminal. Instead of using the Fullrun dashboard, you (or your AI agent) can manage Google Ads with simple commands. Every command auto-detects your environment — colored output in a terminal, structured JSON when piped to another program.
npm install -g fullrun
fullrun login frun_YOUR_API_KEY
fullrun triage
fullrun triage to get a prioritized health report (CRITICAL → HIGH → MEDIUM → LOW)fullrun run to let the AI agent fix the highest-priority issuesAll the hard stuff — Google Ads API calls, bid calculations, budget guardrails, PPC best practices — happens server-side. The CLI is a thin client. No credentials stored on your machine.
| Command | Description |
|---|---|
fullrun login <key> | Authenticate with your API key |
fullrun triage | Account health report with prioritized issues |
fullrun campaigns:list | List campaigns with status, budget, and metrics |
fullrun performance | Account metrics — clicks, conversions, CPA |
fullrun keywords:list | Keywords with performance data |
fullrun run | Trigger a full AI-powered optimization run |
--format json — Force JSON output (default when piped)--format human — Force colored terminal output (default in TTY)--days <n> — Look-back period for performance data (default 7, max 90)--campaign <id> — Filter keywords by campaignInstall the CLI globally and OpenClaw auto-discovers it via the bundled SKILL.md:
npm install -g fullrun
Then tell your agent: "Check my Google Ads and fix anything that's underperforming."
The SKILL.md works as a Claude Code skill. The agent reads it and knows how to use every command.
{
"mcpServers": {
"fullrun": {
"command": "npx",
"args": ["@fullrun/mcp"],
"env": {
"FULLRUN_API_KEY": "frun_..."
}
}
}
}
Any agent that can execute shell commands can use Fullrun. Output is auto-detected — JSON when piped, human-readable in a terminal.
CLI / MCP / Agent
│
▼
Fullrun API (api key auth)
│
▼
Triage engine → Google Ads API
Guardrails, bid caps, PPC rules
The CLI never touches Google Ads directly. It calls the Fullrun API, which runs the same triage and optimization engine that powers the web dashboard. All guardrails (mutation limits, bid caps, budget safety) are enforced server-side.
git clone https://github.com/tuckerschreiber/fullrun-cli
cd fullrun-cli
npm install
npx tsx src/bin/fullrun.ts --help
MIT