run_geofixer_auditThe operational audit. Broken citations, missing entities, weak pages.
Where run_geo_audit tells you what AI engines see, run_geofixer_audit tells you what's broken on your side that they could be reading. Broken citations on your site, missing schema entities, weak comparison pages, listicle-eligibility gaps. Eight credits. About 30 seconds. Hand the result straight into a sprint board.
When to call this tool
This is the audit that produces the work-list. It crawls a defined surface of the domain, checks citation health, schema markup, comparison-page coverage, listicle-eligibility, and a handful of other operational levers, and returns a structured findings document. Pair with get_geofixer_top_actions to extract the prioritised five.
Input schema
{ "domain": "…", "depth": "enum: 'standard' | 'deep'", "surface": "enum: 'auto' | 'all_pages' | 'top_50'" }
Output schema
{ "findings": [{ "category", "severity", "detail", "page", "fix" }], "summary": { "high", "medium", "low" }, "audit_id": "…", "credits_used": 8 }
Example invocations
1. Claude Desktop
Run a GEOFixer audit on example.com. Surface: top 50 pages. Output high-severity findings as a Linear-ready checklist.
2. ChatGPT custom GPT
"What's broken on my site for AI search" → call run_geofixer_audit. Lead with high-severity, group by page.
3. Cursor MCP
Use run_geofixer_audit on linear.app, write findings.json, then open issues in our tracker for severity:high.
4. n8n
{ "jsonrpc": "2.0", "method": "tools/call", "params": { "name": "run_geofixer_audit", "arguments": { "domain": "vercel.com" } } }
5. Raw curl
curl -X POST https://www.mentionfox.com/mcp \ -H "Authorization: Bearer $FOXAPIS_KEY" \ -d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"run_geofixer_audit","arguments":{"domain":"resend.com","depth":"standard"}}}'
Sample output
{ "summary": { "high": 4, "medium": 11, "low": 28 }, "findings": [ { "category": "missing_schema", "severity": "high", "page": "/pricing", "fix": "Add Product + Offer schema with price." } ], "audit_id": "aud_8f3c2", "credits_used": 8 }
Credit cost & rate limits
Standard 8, deep 14. 15 calls per minute per key.
Error codes & recovery
403 BLOCKEDSite blocks crawling. Whitelist our user-agent.422 NO_PAGESNo reachable pages on the surface. Try surface: 'all_pages'.