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.

MCP · streamable HTTP A2A · JSON-RPC 2.0 Ed25519 SIGNED FREE · NO API KEY

Endpoints

WhatURL
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

  1. Claude: Settings → Connectors → “Add custom connector” → paste https://wagerx.io/mcp. Then ask: “Is bspin legit? Check WagerX.”
  2. ChatGPT: Settings → Connectors (developer mode) → add the same URL.
  3. Any MCP client: point it at https://wagerx.io/mcp, transport “streamable HTTP”, no auth.

Or query raw from a terminal:

curl -X POST https://wagerx.io/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call", "params":{"name":"check_casino","arguments":{"name":"Duelbits"}}}'

Tools

check_casino

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_casinos

Compare 2-5 crypto casinos side by side on WagerX audit data (trust score, live tests, KYC, withdrawal speed).

latest_audits

List the most recent WagerX real-money casino audits, newest first.

list_casinos

List every casino WagerX holds forensic audit data on, with trust score and status.

top_casinos

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.

new_casinos

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.

best_bonuses

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:

  1. 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.
  2. 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.
  3. Add A2A discovery. Publish an Agent Card at /.well-known/agent.json and accept message/send JSON-RPC. Mention both in your llms.txt.
  4. 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.
  5. 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.
  6. 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.