MCX records flow straight into your existing GRC, procurement, and audit workflows. No new system to learn — pull records in, get alerted when they change, export evidence when you need it. Your engineers connect it once; everyone else just uses it.
Disclosure records come through in a standard, machine-readable format — so your GRC platform, procurement system, or spreadsheet can read them automatically. No copy-paste from PDFs.
When a provider updates a risk classification or training-data detail, MCX notifies your systems instantly. You learn about a material change as it happens, not at the next renewal.
The record format is published openly and maps to specific EU AI Act articles. Any tool or auditor can read and check a record without integrating with us — no lock-in.
Every provider is verified at the organisation level, and every record carries a named human attestation and a tamper-evident change history.
# Retrieve a provider's current disclosure record curl https://api.mcxregistry.com/v1/disclosures/acme-fraud-v3 \ -H "Authorization: Bearer $MCX_TOKEN" { "slug": "dsc_01J6X4M9", "publisher": "acme.ai", "publisher_role": "provider", "model_id": "acme-fraud-v3", "risk_class": "high_risk", "lifecycle_status": "production", "version": 12, "updated_at": "2026-05-08T14:32Z", "conformity_assessment": "third_party_notified_body", "attestation": { "attestor": "cco@acme.ai" } } # Subscribe for change alerts on a record curl -X POST https://api.mcxregistry.com/v1/subscriptions
# Retrieve a provider's current disclosure record import requests r = requests.get( "https://api.mcxregistry.com/v1/disclosures/acme-fraud-v3", headers={"Authorization": f"Bearer {token}"}, ) record = r.json() record["risk_class"] # "high_risk" record["conformity_assessment"] # "third_party_notified_body" # Subscribe for change alerts on a record requests.post("https://api.mcxregistry.com/v1/subscriptions", json=sub)
// Retrieve a provider's current disclosure record const res = await fetch( "https://api.mcxregistry.com/v1/disclosures/acme-fraud-v3", { headers: { Authorization: `Bearer ${token}` } }, ); const record = await res.json(); record.risk_class; // "high_risk" record.conformity_assessment; // "third_party_notified_body" // Subscribe for change alerts on a record await fetch("https://api.mcxregistry.com/v1/subscriptions", { method: "POST" });
Retrieve, subscribe, and export over a predictable REST surface, with examples in curl, Python, and TypeScript. Connect it to your stack once.
Records and change alerts land in the governance tools you already use, so you are not chasing PDFs or re-keying spreadsheets at audit time.
Check a provider's current, verified disclosure before you sign — and get told automatically if it changes during the contract.
The founding cohort shapes the format before it locks. Direct founder access, no platform fee.