Vixio MCP server

Ask an AI assistant regulatory questions from Vixio's editorial content.

This server exposes Vixio's Gambling Compliance, Payments Compliance and Financial Services content to AI assistants over the Model Context Protocol. You sign in with the Vixio account you already use, and the assistant can then see exactly what your subscription covers — no more, no less.

Open the playground

Connect an assistant

The server is at https://mcp.vixio.support/mcp. Sign-in happens in your browser; there is no password to copy anywhere.

Claude Code

claude mcp add --transport http vixio https://mcp.vixio.support/mcp

Claude Desktop

{
  "mcpServers": {
    "vixio": {
      "type": "http",
      "url": "https://mcp.vixio.support/mcp"
    }
  }
}

Any other MCP client

Point it at the URL above. The server implements OAuth 2.1 discovery (RFC 9728 and RFC 8414) with dynamic client registration and PKCE, so a conformant client configures itself.

What it can do

search_content — Search by title text, jurisdiction, authority and date. Returns titles, links, dates, tags and a short summary.

whats_changed — Everything created or edited since a date, optionally scoped by platform, content type and jurisdiction. The most useful thing to ask.

get_record — The full text of one record. The only tool that returns a whole article.

list_taxonomy — Browse the jurisdictions, authorities and other vocabularies content can be filtered by.

Jurisdictions and authorities are given by name. The server resolves them to Vixio's internal tag ids for you, and asks which you meant when a name is ambiguous rather than guessing.

There is no full-text search. The Vixio API can only match article titles, not bodies. A topic discussed inside an article but absent from its title will not be found by keyword — filter by jurisdiction, authority and date instead. An empty result does not mean the content does not exist.

What you can see

Every request is made as you. Platform entitlements and the jurisdiction ceiling are enforced by the Vixio API exactly as they are for any other client, and this server does not reimplement, cache around or widen any of it.

PlatformCodeContent
Gambling Compliancegc News analysis, sports betting, In Focus, regulatory updates, data forecasts, jurisdictional reports, trackers
Payments Compliancepc Horizon scanning, insights, requirements, regulatory analysis, guides, trackers
Financial Servicesfs Horizon scanning, regulatory analysis

If your subscription does not cover a platform, the assistant is told so in plain words rather than shown an error.

Getting access

You need a Vixio account and a Vixio API account with a matching email address. Your Vixio account manager arranges both. If sign-in works but every search comes back empty, that mismatch is the usual cause.

For developers

To inspect the protocol itself — raw tool schemas, request and response envelopes — use the official inspector:

npx @modelcontextprotocol/inspector https://mcp.vixio.support/mcp

There is also a local stdio server for single-developer use, which reads credentials from your environment instead of a browser sign-in. See the repository.