Home · Integrations · Zapier
Live

Wire FoxAPIs into Zapier in 3 minutes.

Zapier doesn't yet have a native FoxAPIs app, but the Webhooks by Zapier action calls our endpoint just fine. Pair it with any trigger Zapier supports — new email, form submission, scheduled time — and let your Zaps call agent-grade tools.

Step-by-step install

  1. Create a new Zap.
  2. Pick your trigger (a Typeform submission, a new Gmail email, a Schedule trigger — anything).
  3. Add an action: Webhooks by Zapier → POST.
  4. URL: https://www.mentionfox.com/mcp. Payload Type: json.
  5. Headers: Authorization: Bearer YOUR_FOXAPIS_KEY and Content-Type: application/json.
  6. Data: paste the JSON-RPC body (template below) with field-mapped arguments from upstream steps.

JSON-RPC body template

{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "tools/call",
  "params": {
    "name": "vet_person",
    "arguments": { "name": "{{trigger.name}}" }
  }
}

Three worked examples

Example 1 — Auto-vet inbound demo requests

Trigger: new Typeform submission. Action: vet_person on the submitter's name. Action: send the result to Slack #sales-pipeline.

Example 2 — Daily mention digest

Trigger: schedule (daily 9am). Action: scan_mentions for your brand. Action: format and send as an email.

Example 3 — Sequence dispatcher

Trigger: new row in a Google Sheet. Action: build_sequence. Action: a second webhook to send_sequence after a 24-hour Delay step. The sheet row stamps the job id.

Common errors & fixes

400 bad jsonZapier sometimes silently html-encodes mapped fields. Use the "Code by Zapier" step to JSON.stringify first.
auth header missingHeader keys are case-sensitive in some Zapier accounts; use Authorization exactly.
response truncatedZapier truncates webhook responses over ~6KB. Filter response server-side or paginate.