getsorted.Check your business
§ MCP server

Run a compliance check from your AI assistant.

getsorted runs a free, public MCP (Model Context Protocol) server. Connect it to Claude, Cursor, VS Code or any MCP client and your assistant can check a UK business against our regulation cards, in conversation. No API key, no account, nothing stored.

Endpoint https://api.getsorted.today/mcp

Transport: streamable HTTP · Auth: none · State: none, every call is independent

Tools

ToolWhat it does
get_questionsThe yes/no questions the check is based on, with help text and gating conditions.
run_compliance_checkTakes a map of answers (and an optional SIC code) and returns the full report: cards sorted action_needed first, with risk, action and official guidance links.
list_cardsEvery regulation the checker covers, with severity and a link to its plain-English guide.
get_cardFull detail for one regulation: risk, required action, and the exact conditions under which it applies.

The server also ships two ready-made prompts, shown in clients with a prompt picker (Claude Desktop, Cursor): check_my_business (describe your business in a sentence, get a full check) and explain_regulation (ask about one regulation).

Add it to your client

Claude Code

claude mcp add --transport http getsorted https://api.getsorted.today/mcp

Then ask: "Use getsorted to check my business. I run a small web agency with two employees."

Claude (web and desktop)

Settings → Connectors → Add custom connector, then paste the endpoint URL above.

Cursor

Or add to .cursor/mcp.json using the JSON below.

VS Code

code --add-mcp '{"name":"getsorted","type":"http","url":"https://api.getsorted.today/mcp"}'

Any other MCP client

{
  "mcpServers": {
    "getsorted": {
      "url": "https://api.getsorted.today/mcp"
    }
  }
}

Try it without a client

The MCP Inspector gives you a browser UI to poke at the tools:

npx @modelcontextprotocol/inspector

Connect with transport Streamable HTTP and the endpoint URL above. Or verify the server is up with curl:

curl -s -X POST https://api.getsorted.today/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"curl","version":"1.0"}}}'

What you get back

The same engine that powers the checker: each regulation card comes back with a status (action needed, worth checking, looks good, not applicable), a plain-English summary, what is at stake, what to do, and a link to official guidance. Reports over MCP carry no partner links.

Everything is guidance based on ICO, GOV.UK and other authoritative sources, not legal advice. Answers are processed per request and never stored.

llms.txt  REST API for partners