SoapBox for Developers & AI Agents

Grounded, cited, public-domain Scripture and church-directory tools — built for AI agents. Verify quotes against a real verse database, look up verses and Strong's entries, and discover churches near a location. Available as a metered API and a Model Context Protocol (MCP) server.

Why SoapBox

Scripture is verified, not generated. Quotes are matched against a real KJV verse database, so your agent never presents a misquote or a fabricated reference. Only public-domain (KJV) Scripture is served — licensed translations are never exposed. Beyond lookup, SoapBox offers real action rails: church discovery today; prayer and giving (acting on a user's behalf) behind explicit user consent.

MCP server (recommended)

Add SoapBox as a tool in Claude or any MCP-compatible agent. Streamable-HTTP transport, JSON-RPC 2.0.

Endpoint: https://foyekanoxpnkydoibaas.supabase.co/functions/v1/faith-mcp
Auth: Authorization: Bearer <your SoapBox API key>

verify_scripture

Confirm a Bible quote is real and cited to the correct reference. Call this before presenting any quote.

get_verse

Look up a public-domain KJV verse by book, chapter, and verse.

lookup_strongs

Strong's Greek/Hebrew lexicon entry — lemma, transliteration, gloss, definition.

find_churches

Nearby churches from the public directory by lat/lng — distance, denomination, on-SoapBox flag.

Faith Content API (raw HTTP)

Prefer plain HTTP? Every tool is a single POST with an action.

Endpoint: POST .../functions/v1/faith-content-api  ·  Auth: x-api-key: <key>  ·  actions: verify, verse, strongs, churches

# Verify a quote and its citation (anti-hallucination)
curl -s https://foyekanoxpnkydoibaas.supabase.co/functions/v1/faith-content-api \
  -H "x-api-key: $SOAPBOX_API_KEY" -H "content-type: application/json" \
  -d '{"action":"verify","quote":"For God so loved the world","reference":"John 3:16"}'

# -> { "verified": true, "confidence": 0.67, "match": {"reference":"John 3:16", ...},
#      "reference_check": { "attribution_correct": true } }

# Find churches near a location
curl -s https://foyekanoxpnkydoibaas.supabase.co/functions/v1/faith-content-api \
  -H "x-api-key: $SOAPBOX_API_KEY" -H "content-type: application/json" \
  -d '{"action":"churches","lat":40.7128,"lng":-74.0060,"radius_miles":10,"denomination":"Baptist"}'

Good agent behavior

Get an API key

Free tier available; usage is metered. Email support@soapboxsuperapp.com to request a key. Self-serve issuance is coming soon.