← All WebMCP sites

usercentrics.com

Developer Toolshttps://usercentrics.com/listed as of 2026-08-01
Consent management platform (CMP) for cookie consent, privacy compliance, and user preference management across web and apps.
See Ora's auditWe loaded this site in a real browser and scored its tools. Score: 54/100 (C).

Tools

uc_read_pageactimperative
Read the content of a Usercentrics page as clean markdown (about 10x fewer tokens than the HTML). Prefer this over fetching/scraping a page when you need to understand or quote its content to answer the user. Pass an absolute usercentrics.com URL (e.g. from uc_find_regulation) or a known page_key such as "pricing".
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Absolute usercentrics.com URL to read."
    },
    "page_key": {
      "type": "string",
      "description": "A known page key, e.g. \"pricing\", \"regulations\"."
    }
  }
}
uc_find_regulationactimperative
Given a country, region, US state or industry, return the most relevant data-privacy regulation and region pages on Usercentrics (e.g. GDPR for the EU, CCPA for California). Use this when the user asks which law applies to them or how to comply somewhere. Read a returned URL with uc_read_page to summarise it.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "A country, region, US state or industry, e.g. \"California\", \"Germany\", \"healthcare\"."
    }
  },
  "required": [
    "query"
  ]
}
uc_scan_cmpactimperative
Check whether a website is GDPR-compliant using the Usercentrics scanner. Ask the user for their domain before calling. The scan takes 30–90 seconds; this tool polls until it completes and returns the result inline.
Input schema
{
  "type": "object",
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "description": "Domain to scan, e.g. \"example.com\"."
    }
  }
}
uc_scan_privacy_policyanswerimperative
Run a free Usercentrics privacy-policy compliance scan of any website. Returns a risk status and a URL to the full audit (detected trackers, missing disclosures). The scan takes up to ~70 seconds.
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Full URL of the website to scan, e.g. https://example.com"
    }
  },
  "required": [
    "url"
  ]
}
Listings are sourced from public community registries and shown as reported.