UCP Checker
Back to status
dkhoonemirates.com icon
UCP Score

UCP Score for dkhoonemirates.com

UCP conformance score, top priorities, impact & effort matrix, and copy-paste fixes for every issue.

Verified
B76/100
Analyzed Sep 22, 2026 · 6 recommendations ·Zid · v2026-04-08 upgrade
76
/ 100
UCP Conformance Score
B

Solid UCP setup on dkhoonemirates.com with a few gaps left to close.

Agent Discovery95
UCP Conformance92
Capability Coverage35
Biggest blockers
Declare a transport on the service
Working

Agent Discovery is solid (95/100).

Blocking

Declare a transport on the service — Service entry has no "transport" field and no legacy nested transport.

Start Here

Declare a transport on the service → Name services the way the spec does → Name payment handlers the way the spec does

Verified

dkhoonemirates.com publishes a valid UCP manifest, with minor schema warnings.

Latency
301ms
Version
2026-04-08
Robots.txt
Allowed ✅

Top Priorities

1
Declare a transport on the service

Service entry has no "transport" field and no legacy nested transport.

High impact Low effort
2
Name services the way the spec does

A service is not named in the spec's dotted form (e.g. dev.ucp.shopping).

Medium impact Low effort
3
Name payment handlers the way the spec does

A payment handler is not named in the spec's dotted form (e.g. com.google.pay).

Medium impact Low effort

Impact & Effort Matrix

Prioritised recommendations by expected impact and implementation effort

Quick Wins(1)

High impact, low effort

  • Declare a transport on the service
Strategic Investments(0)

High impact, high effort

  • No items
Incremental Gains(3)

Medium impact & effort

  • Name services the way the spec does
  • Name payment handlers the way the spec does
  • Add version to each payment handler
Consider Later(2)

Lower priority

  • Move to the latest UCP protocol version
  • Publish a /llms.txt brand brief

How you compare on Zid

Response time benchmarked against 5 Zids we monitor.

fastZid median 377msslow
Your store
301ms
Zid percentile
Top quartile
Faster than 80% of Zid stores
Cohort range
338–408ms
p25 to p75 (middle half)

Recommendations

All improvements ranked by priority, with evidence and actionable fixes.

1

Declare a transport on the service

High impact Low effort

Service entry has no "transport" field and no legacy nested transport.

Why it matters

Without a transport, agents do not know whether to speak REST, MCP, or A2A to your endpoint.

Show fix

Allowed transport values per spec: rest, mcp, a2a, embedded.

{
  "version": "2026-08-25",
  "transport": "mcp",
  "endpoint": "https://yourstore.com/api/ucp/mcp"
}
UCP_SERVICE_MISSING_TRANSPORT
2

Name services the way the spec does

Medium impact Low effort

A service is not named in the spec's dotted form (e.g. dev.ucp.shopping).

Why it matters

Like capabilities, services are named like reversed web addresses so names never collide.

Show fix
"services": {
  "dev.ucp.shopping": [...]
}
UCP_SERVICE_INVALID_KEY
3

Name payment handlers the way the spec does

Medium impact Low effort

A payment handler is not named in the spec's dotted form (e.g. com.google.pay).

Why it matters

Handlers are named like reversed web addresses (com.google.pay, com.stripe.terminal) so every store declaring the same payment method names it the same way, and an agent can recognise it.

Show fix
"payment_handlers": {
  "com.google.pay": [...]
}
UCP_HANDLER_INVALID_KEY
4

Add version to each payment handler

Medium impact Low effort

A payment handler is missing the required "version" field.

Why it matters

Handler versions evolve independently of the manifest. Agents pin their token request format to a specific handler version.

Show fix
"version": "2026-08-25"
UCP_HANDLER_MISSING_VERSION
5

Move to the latest UCP protocol version

Low impact Low effort

Your manifest declares a valid but older protocol version. A newer one is published.

Why it matters

Older versions stay valid (agents use the version you declare), but newer abilities (embedded checkout, agent payment mandates, linked customer accounts, card authentication, payment terms and store location lookup) only work against the latest version. The manifest itself barely changes: the signing keys move to a root-level "keys" list, and the rest of the update is in what capabilities can say.

Show fix

Set the version to 2026-08-25 and publish your public keys as a root-level "keys" list. The older "signing_keys" field is still accepted, but "keys" is the one every verifier reads.

"ucp": {
  "version": "2026-08-25",
  ...
},
"keys": [ ... ]   // beside "ucp", not inside it
UCP_VERSION_OUTDATED
6

Publish a /llms.txt brand brief

Low impact Low effort Emerging

No /llms.txt file detected at the root of your domain.

Why it matters

llms.txt is an emerging convention (analogous to robots.txt) that lets you give AI agents a hand-written brief about your brand, product categories, return policy, and crawl preferences. Strict UCP agents do not require it, but recommendation/discovery agents increasingly read it for context.

Show fix

Save as /llms.txt at your site root. Plain text, written for an LLM audience. The format is informal — these section headings are a working convention, not a spec. Replace the placeholders with your own brand details and update when policies or product lines change.

# llms.txt
# Public brief for AI agents about Yourstore

# About
One or two sentences on what you sell, who you sell to, and any defining context (founded, mission, sustainability stance, etc.).

# Product Categories
- Category one
- Category two
- Category three

# Policies
- Returns: e.g. 30 days, full refund
- Shipping: e.g. Free over $30, 3-5 business days
- Any other policy worth surfacing (cruelty-free, vegan, made-to-order, etc.)

# Agent Capabilities
- UCP manifest: /.well-known/ucp
- Supported flows: cart, checkout, tokenized payment, etc.
- Anything explicitly NOT supported (e.g. "no subscription products via agent")

# Contact
[email protected]
UCP_MISSING_LLMS_TXT

Full Check Breakdown

Every signal we evaluate, grouped by category.

Agent Discovery7/8 passed

Can AI agents find your store and its UCP manifest?

  • HTTPSCore

    Manifest served over a secure connection.

    Manifest URL uses https://

    Why it matters

    Agents reject non-HTTPS endpoints outright. Signed payloads over HTTP are meaningless because the channel itself is tamperable.

  • UCP manifest reachableCore

    Manifest fetched OK from /.well-known/ucp.

    HTTP 200

    Why it matters

    Agents start every session by fetching this URL. If it 404s or times out, the store is invisible to agent commerce.

  • AI bot accessCore

    robots.txt allows agent crawlers to fetch the manifest.

    robots.txt allows /.well-known/ucp

    Why it matters

    Agents respect robots.txt. Even a published manifest gets ignored if the file is disallowed for known agent user-agents.

  • llms.txtExperimental

    Hand-written brief at /llms.txt for AI agents.

    HTTP 404 at /llms.txt

    Why it matters

    Emerging convention (analogous to robots.txt). Recommendation/discovery agents read it for brand context, return policy, and crawl preferences.

  • sitemap.xmlCore

    XML sitemap published at /sitemap.xml.

    Found at /sitemap.xml

    Why it matters

    Tells agents which pages are canonical and how often they change. Without it, agents fall back to following internal links.

  • Open Graph tagsCore

    OG meta tags on the homepage.

    og:title and og:type/url present

    Why it matters

    OG tags drive how your store unfurls in agent surfaces, Slack, iMessage, and ChatGPT shares.

  • Organization schema (JSON-LD)Core

    Schema.org Organization (or OnlineStore) JSON-LD on homepage.

    Organization-typed JSON-LD detected

    Why it matters

    Gives agents a structured representation of your brand identity — used to verify you are who your manifest claims you are.

  • Mobile viewport metaCore

    Viewport meta tag for mobile rendering.

    <meta name="viewport"> present

    Why it matters

    Mobile agent sessions render in browser sandboxes that respect this. Without it, screenshots taken by agents are unreadable.

UCP Conformance3/4 passed

Does your manifest meet the published spec?

  • Manifest passes schema validationCore

    Manifest structure conforms to the published UCP spec.

    No structural errors

    Why it matters

    Strict UCP agents reject manifests with structural errors. The error code in the diagnostic shows which field failed.

  • Protocol version present and well-formedCore

    ucp.version follows YYYY-MM-DD format.

    Version: 2026-04-08

    Why it matters

    UCP versions are dates, not semver. Agents pick the closest matching schema based on this string.

  • Signing keys publishedCore

    Root-level keys array (canonical since 2026-07-12; legacy signing_keys also accepted) for response verification.

    signing_keys present

    Why it matters

    Required for tokenized payment flows in v2026-04-08+. Stores using checkout-link redirects (e.g. WooCommerce native) often skip this safely.

  • No validation warningsCore

    Manifest passes structural and field-level rules.

    4 warnings

    Why it matters

    Each warning is a strict-spec deviation — the recommendations section above lists them with copy-code fixes.

Capability Coverage0/4 passed

What operations can agents actually perform?

  • Capabilities declaredCore

    Number of agent-readable capabilities under ucp.capabilities.

    1 capability detected

    Why it matters

    Capabilities tell agents what operations to attempt. More coverage = more sessions complete end-to-end without falling back to scraping.

  • Checkout capabilityCore

    Store declares a checkout-namespaced capability.

    No checkout capability

    Why it matters

    Without a checkout capability, agents can browse but can't complete a purchase end-to-end.

  • Transports declaredInterop

    Service transports (REST/MCP/A2A/Embedded) declared on services.

    No transports declared

    Why it matters

    Transports tell agents how to actually call your endpoints. MCP and REST are the most widely supported today.

  • Payment handlersCore

    Tokenized payment handlers registered for in-conversation checkout.

    1 handler declared, not named the way the spec expects (e.g. com.google.pay), so agents cannot look it up

    Why it matters

    Tokenized payment lets agents complete purchases without redirecting the buyer to a hosted checkout. Empty by design is valid for WooCommerce-style native checkouts.

Capabilities Detected

UCP capabilities supported by this endpoint
Search 2026-04-08
Catalog 2026-04-08

Technical Vitals

Technical details for this UCP endpoint
UCP Status Verified
Endpoint https://dkhoonemirates.com/.well-known/ucp
HTTP Status 200
UCP Version 2026-04-08
Transports
Last Observed
Last Full Index

Embed your UCP Score

Drop the live grade into your README, status page, or marketing site. The badge auto-updates as your score changes.

UCP Score for dkhoonemirates.com badge for https://ucpchecker.com/score/dkhoonemirates.comLive preview
Markdown
[![UCP Score for dkhoonemirates.com](https://ucpchecker.com/score/dkhoonemirates.com/badge.svg)](https://ucpchecker.com/score/dkhoonemirates.com)
HTML
<a href="https://ucpchecker.com/score/dkhoonemirates.com"><img src="https://ucpchecker.com/score/dkhoonemirates.com/badge.svg" alt="UCP Score for dkhoonemirates.com"></a>
New · Early access open
Is dkhoonemirates.com yours? Claim it & monitor it daily

Prove ownership with one DNS record and the new monitoring dashboard watches it every day — score trends, break alerts, staging drift and a watchlist that benchmarks you against the field. Free while in beta.

Start monitoring →

This score reflects data from the most recent crawl. Run a fresh check to update, or read the methodology to see how each signal is scored.

Save this report

Track dkhoonemirates.com's UCP score over time. We'll re-run the full check weekly and email you if the score drops, a capability regresses, or status flips.

Free. One email when something changes — no marketing. Privacy.