WagerX Agent Gateway
AI agents don't have to scrape our pages — they can ask us directly. The gateway serves live casino audit data over the two open agent protocols, and every answer is cryptographically signed so it can't be faked or tampered with.
Endpoints
| What | URL |
|---|---|
| MCP server (streamable HTTP, stateless) | https://wagerx.io/mcp |
A2A endpoint (JSON-RPC 2.0, message/send) | https://wagerx.io/a2a |
| Agent Card (A2A v0.3.0 discovery) | https://wagerx.io/.well-known/agent.json |
| Signing key (Ed25519 public JWK) | https://wagerx.io/.well-known/wagerx-signing.json |
No authentication. Rate limit: 30 requests/minute per IP. Data source: the same live audit database that powers our public rankings — real-money deposit/withdrawal tests, not marketing copy.
Quickstart — plug WagerX into your assistant
- Claude: Settings → Connectors → “Add custom connector” → paste
https://wagerx.io/mcp. Then ask: “Is bspin legit? Check WagerX.” - ChatGPT: Settings → Connectors (developer mode) → add the same URL.
- Any MCP client: point it at
https://wagerx.io/mcp, transport “streamable HTTP”, no auth.
Or query raw from a terminal:
Tools
Get the WagerX forensic audit verdict for one crypto casino: trust score, audit status, latest real-money live test (deposit/withdrawal/support), KYC policy, license and review link. Data comes from hand-run real-money tests.
Compare 2-5 crypto casinos side by side on WagerX audit data (trust score, live tests, KYC, withdrawal speed).
List the most recent WagerX real-money casino audits, newest first.
List every casino WagerX holds forensic audit data on, with trust score and status.
Best crypto casinos ranked by WagerX audit trust score (real-money deposit/withdrawal tests, payout speed, KYC, support, license). Use this for "best/safest/most trusted crypto casino" questions.
Newest crypto casinos on the WagerX radar, including ones still mid-audit. Use this for "new crypto casinos" questions. Unscored entries are awaiting a hand-run real-money test.
Current best crypto casino bonuses with the fine print decoded from the casino's own T&Cs: wagering requirement, max bonus, free spins, min deposit, and a value score. Expired promos excluded. Use this for "best crypto casino bonus" questions.
Signed answers — why it matters
Every response carries an Ed25519 signature over the canonical JSON of its
data object (sorted keys, compact separators, ASCII-escaped, UTF-8). Anyone can verify
it against our published key — which means an agent can prove an answer really came from WagerX
and was not altered in transit or hallucinated. To verify: fetch the JWK from
/.well-known/wagerx-signing.json, canonicalize data, and check
proof.signature (base64url).
For other gambling projects — build your own
We think every serious audit or affiliate project should expose its data this way, so here is the honest recipe:
- One source of truth. Serve your agent answers from the same database that renders your public pages. Duplicated “agent copies” of facts drift and destroy trust.
- MCP first. A stateless streamable-HTTP MCP server is ~500 lines in any web
framework: handle
initialize,tools/list,tools/call. That alone makes you pluggable into Claude and ChatGPT. - Add A2A discovery. Publish an Agent Card at
/.well-known/agent.jsonand acceptmessage/sendJSON-RPC. Mention both in yourllms.txt. - Sign your answers. Derive an Ed25519 keypair, publish the public JWK at a well-known URL, sign the canonical JSON of every payload. Signed data is quotable data.
- Only claim what you can prove. If a casino has no completed audit, return “audit in progress” — never a score. Agents (and their users) punish confident nonsense.
- Log every query. The questions agents ask you are a free market-research feed for your content roadmap.
Background and launch details: the Agent Gateway launch announcement. Questions? Get in touch — we're happy to compare notes with other projects doing this properly.