Home · Tools · autopilot_status

autopilot_statusHealth check on the daily fix loop.

If you've turned on GEO Autopilot, your agent wants a way to ask "is it actually running?" without opening a dashboard. autopilot_status returns last-run timestamp, queue depth, fix-rate over the last 7 days, and any error counters. One credit. Sub-second. Drop into a daily report or a Slack digest.

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

When to call this tool

Use it on a schedule — daily, hourly — to confirm the fix loop is healthy. The tool reports last successful run, queue depth (number of fixes pending), fix-rate (percent of pending items closed in the last 7 days), and an error counter. The agent can pattern-match on simple thresholds: queue depth above 50 and zero closes in 24 hours equals an alert.

Input schema

{ "domain": "…" }

Output schema

{
  "domain": "…",
  "last_run": "…",
  "queue_depth": 0,
  "fix_rate_7d": 0-100,
  "errors_24h": 0,
  "healthy": true,
  "credits_used": 1
}

Example invocations

1. Claude Desktop

Is GEO Autopilot healthy for example.com?

2. ChatGPT custom GPT

Daily morning brief: call autopilot_status for the
domains in my watchlist; flag anything not healthy.

3. Cursor MCP

Build a CLI: foxapis autopilot status <domain>

4. n8n

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

Sample output

{
  "domain": "linear.app",
  "last_run": "2026-05-09T03:14:00Z",
  "queue_depth": 14, "fix_rate_7d": 71,
  "errors_24h": 0, "healthy": true,
  "credits_used": 1
}

Credit cost & rate limits

Flat 1 credit. 240 calls per minute per key.

Error codes & recovery

404 NOT_ENROLLEDDomain isn't enrolled in Autopilot. Enrol via the dashboard first.