Dataset Viewer
Auto-converted to Parquet Duplicate
domain
string
status
string
ucp_url
string
http_status
int64
version
string
has_checkout
int64
has_identity_linking
int64
has_cart_management
int64
has_order
int64
has_payment_token
int64
capability_count
int64
ai_bot_policies
string
transports
string
last_checked_at
string
last_success_at
string
allbirds.com
verified
https://allbirds.com/.well-known/ucp
200
2026-01-23
0
0
0
0
0
0
{"UCPCheckerBot":true,"GPTBot":true,"Google-Extended":true,"ClaudeBot":true,"Applebot-Extended":true,"CCBot":true}
["mcp","embedded"]
2026-02-22T18:00:08+00:00
2026-02-22T18:00:08+00:00
boden.com
verified
https://boden.com/.well-known/ucp
200
2026-01-23
0
0
0
0
0
0
{"UCPCheckerBot":true,"ChatGPT-User":true,"Perplexity-User":true,"Meta-ExternalFetcher":true,"OAI-SearchBot":true,"PerplexityBot":true,"GPTBot":true,"Google-Extended":true,"ClaudeBot":true,"Applebot-Extended":true,"CCBot":true,"anthropic-ai":true,"Claude-Web":true,"GoogleOther":true,"Meta-ExternalAgent":true,"FacebookBot":true,"Amazonbot":true,"Bytespider":true,"cohere-ai":true,"Diffbot":true,"Omgilibot":true,"ImagesiftBot":true,"YouBot":true,"DuckAssistBot":true,"Amzn-SearchBot":true,"Applebot":true,"Google-CloudVertexBot":true}
["mcp","embedded"]
2026-03-19T20:50:14+00:00
2026-03-19T20:50:14+00:00
bornforfashion.com
verified
https://bornforfashion.com/.well-known/ucp
200
2026-01-23
0
0
0
0
0
0
{"UCPCheckerBot":true,"GPTBot":true,"Google-Extended":true,"ClaudeBot":true,"Applebot-Extended":true,"CCBot":true}
["rest","embedded","mcp"]
2026-02-17T20:30:22+00:00
2026-02-17T20:30:22+00:00
casper.com
verified
https://casper.com/.well-known/ucp
200
2026-01-23
0
0
0
0
0
0
{"UCPCheckerBot":true,"GPTBot":true,"Google-Extended":true,"ClaudeBot":true,"Applebot-Extended":true,"CCBot":true}
["mcp","embedded"]
2026-02-15T22:49:29+00:00
2026-02-15T22:49:29+00:00
forever21.com
verified
https://forever21.com/.well-known/ucp
200
2026-01-23
0
0
0
0
0
0
{"UCPCheckerBot":true,"GPTBot":true,"Google-Extended":true,"ClaudeBot":true,"Applebot-Extended":true,"CCBot":true}
["mcp","embedded"]
2026-02-15T22:49:32+00:00
2026-02-15T22:49:32+00:00
hairlust.com
verified
https://hairlust.com/.well-known/ucp
200
2026-01-23
0
0
0
0
0
0
{"UCPCheckerBot":true,"GPTBot":true,"Google-Extended":true,"ClaudeBot":true,"Applebot-Extended":true,"CCBot":true}
["mcp","embedded"]
2026-02-22T18:01:41+00:00
2026-02-22T18:01:41+00:00
oniricapps.com
verified
https://oniricapps.com/.well-known/ucp
200
2026-01-11
0
0
0
0
0
0
null
["rest","mcp","embedded"]
2026-02-22T17:59:54+00:00
2026-02-22T17:59:54+00:00
pier1.com
verified
https://pier1.com/.well-known/ucp
200
2026-01-23
0
0
0
0
0
0
{"UCPCheckerBot":true,"GPTBot":true,"Google-Extended":true,"ClaudeBot":true,"Applebot-Extended":true,"CCBot":true}
["mcp","embedded"]
2026-02-17T13:30:44+00:00
2026-02-17T13:30:44+00:00
thebodyshop.com
verified
https://thebodyshop.com/.well-known/ucp
200
2026-01-23
1
0
0
1
0
2
{"UCPCheckerBot":true,"GPTBot":true,"Google-Extended":true,"ClaudeBot":true,"Applebot-Extended":true,"CCBot":true}
["mcp","embedded"]
2026-03-26T22:38:08+00:00
2026-03-26T22:38:08+00:00

UCP Merchant Directory

A dataset of e-commerce merchants and their Universal Commerce Protocol (UCP) adoption status, updated monthly.

UCP is an open standard that allows AI agents to interact with online stores — browsing products, managing carts, and completing checkout programmatically. This dataset tracks which merchants have implemented UCP and what capabilities they expose.

Dataset Description

Each row represents one merchant domain as of the export date. Only publicly-verified or checked merchants are included. Domains in our do-not-publish list are excluded.

Columns

Column Type Description
domain string Merchant domain (e.g. example.com)
status string UCP status: verified, not_detected, invalid, blocked, unreachable, pending
ucp_url string URL where the UCP manifest was found
http_status integer HTTP response code from the manifest URL
version string UCP spec version declared in the manifest
has_checkout boolean (0/1) Merchant exposes a checkout capability
has_identity_linking boolean (0/1) Merchant exposes identity linking
has_cart_management boolean (0/1) Merchant exposes cart management
has_order boolean (0/1) Merchant exposes order management
has_payment_token boolean (0/1) Merchant exposes payment token capability
capability_count integer Total number of UCP capabilities exposed
ai_bot_policies JSON string AI bot access policies from robots.txt / manifest
transports JSON string Supported transport protocols (MCP, REST, etc.)
last_checked_at ISO 8601 When the domain was last checked
last_success_at ISO 8601 When the domain last returned a valid UCP manifest

Status Values

  • verified — A valid, parseable UCP manifest was found at the domain
  • not_detected — No UCP manifest found at standard paths
  • invalid — A manifest was found but failed validation
  • blocked — The domain actively blocks AI/bot access
  • unreachable — The domain could not be reached
  • pending — Queued for checking, not yet processed

Source

Data is collected by UCP Checker, which crawls merchants and validates their UCP manifests against the published spec. Checks are run continuously; this dataset is exported monthly.

Usage

import pandas as pd

df = pd.read_csv("ucp-merchants-2026-03-01.csv")

# Verified merchants with checkout capability
checkout_ready = df[(df['status'] == 'verified') & (df['has_checkout'] == 1)]
print(f"{len(checkout_ready)} merchants support AI checkout")

# Adoption by capability
for col in ['has_checkout','has_cart_management','has_order','has_identity_linking','has_payment_token']:
    n = df[col].sum()
    print(f"{col}: {n}")

License

Data is released under CC BY 4.0. Attribution: UCP Checker (ucpchecker.com).

Citation

@misc{ucpchecker2026,
  title   = {UCP Merchant Directory},
  author  = {UCP Checker},
  year    = {2026},
  url     = {https://huggingface.co/datasets/UCPChecker/ucp-merchants}
}
Downloads last month
-