Home · Tools · get_geofixer_score

get_geofixer_scoreHow much you've actually fixed.

GEO score measures visibility. get_geofixer_score measures motion — what fraction of identified gaps the GEOFixer engine has actually closed in the last 30 days. Useful for distinguishing "we ran an audit and that's it" from "we ran an audit and shipped the fixes". One credit. Sub-second.

Slug
get_geofixer_score
Cost
1 credit
Latency
<1s
Rate limit
240/min

When to call this tool

This is the operational counterpart to the visibility score. Visibility tells you where you stand; the fix-rate score tells you whether your processes are actually shipping the fixes you identified. Many teams have high visibility scores but a stagnant fix-rate; the gap shows up here. Daily reports and weekly digests should pull both.

Input schema

{ "domain": "…" }

Output schema

{
  "domain": "…",
  "fix_score": 0-100,
  "closed_30d": 0,
  "opened_30d": 0,
  "net_progress": 0,
  "credits_used": 1
}

Example invocations

1. Claude Desktop

What's my GEOFixer fix-rate this month for example.com?

2. ChatGPT custom GPT

For weekly GEO progress reports, call get_geofixer_score
alongside get_geo_score and lead with net_progress.

3. Cursor MCP

Pull get_geofixer_score for these 5 properties; render
as a sparkline.

4. n8n

{ "jsonrpc": "2.0", "method": "tools/call",
  "params": { "name": "get_geofixer_score", "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":"get_geofixer_score","arguments":{"domain":"resend.com"}}}'

Sample output

{
  "domain": "resend.com",
  "fix_score": 62,
  "closed_30d": 31, "opened_30d": 14, "net_progress": 17,
  "credits_used": 1
}

Credit cost & rate limits

Flat 1 credit. 240 calls per minute per key.

Error codes & recovery

404 NOT_ENROLLEDGEOFixer not enabled for this domain.