UCP Checker
Back to status
fazy.com icon
UCP Score

UCP Score for fazy.com

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

Verified
A93/100
Analyzed Sep 16, 2026 · 3 recommendations ·Shopify · v2026-08-25 latest
93
/ 100
UCP Conformance Score
A

fazy.com is conforming and ready for agent discovery and checkout.

Agent Discovery95
UCP Conformance97
Capability Coverage84
Biggest blockers
Add endpoint URL to the service
Working

UCP Conformance is solid (97/100).

Blocking

Add endpoint URL to the service — Service uses a transport that requires an endpoint URL but none is declared.

Start Here

Add endpoint URL to the service → Confirm checkout-link redirect strategy → Add Open Graph meta tags to the homepage

Verified

fazy.com is agent-ready but has minor schema warnings.

Latency
152ms
Version
2026-08-25
Robots.txt
Allowed ✅

Top Priorities

1
Add endpoint URL to the service

Service uses a transport that requires an endpoint URL but none is declared.

High impact Low effort
2
Confirm checkout-link redirect strategy

payment_handlers is present but empty.

Low impact Low effort
3
Add Open Graph meta tags to the homepage

OG tags missing or incomplete on your homepage.

Low impact Low effort

Impact & Effort Matrix

Prioritised recommendations by expected impact and implementation effort

Quick Wins(1)

High impact, low effort

  • Add endpoint URL to the service
Strategic Investments(0)

High impact, high effort

  • No items
Incremental Gains(0)

Medium impact & effort

  • No items
Consider Later(2)

Lower priority

  • Confirm checkout-link redirect strategy
  • Add Open Graph meta tags to the homepage

How you compare on Shopify

Response time benchmarked against 10,565 Shopifies we monitor.

fastShopify median 165msslow
Your store
152ms
Shopify percentile
Above median
Faster than 70% of Shopify stores
Cohort range
149–187ms
p25 to p75 (middle half)

Recommendations

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

1

Add endpoint URL to the service

High impact Low effort

Service uses a transport that requires an endpoint URL but none is declared.

Why it matters

REST, MCP, and A2A transports all need a URL to call. Embedded is the only transport that omits this.

Show fix
"endpoint": "https://yourstore.com/api/ucp/mcp"
UCP_SERVICE_MISSING_ENDPOINT
2

Confirm checkout-link redirect strategy

Low impact Low effort

payment_handlers is present but empty.

Why it matters

An empty payment_handlers array tells agents "I do not tokenize — redirect the buyer to my hosted checkout instead." Common and valid for WooCommerce stores. Only an issue if you intended to support tokenized payment.

UCP_EMPTY_PAYMENT_HANDLERS
3

Add Open Graph meta tags to the homepage

Low impact Low effort

OG tags missing or incomplete on your homepage.

Why it matters

OG tags give agents and link unfurlers (Slack, iMessage, ChatGPT) a clean title, description, and image to represent your store. Without them, shares show garbled fallback text.

Show fix

Add inside <head>. og:title and og:type are the minimum; og:url, og:description, and og:image are strongly recommended.

<meta property="og:title" content="Yourstore — short tagline">
<meta property="og:type" content="website">
<meta property="og:url" content="https://yourstore.com/">
<meta property="og:description" content="One-sentence description of what you sell.">
<meta property="og:image" content="https://yourstore.com/og-cover.jpg">
<meta property="og:site_name" content="Yourstore">
UCP_MISSING_OG_TAGS

Full Check Breakdown

Every signal we evaluate, grouped by category.

Functional probes ran .
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.

    Found 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.

    Missing or incomplete on homepage

    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 Conformance4/5 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.

  • Spec version present and well-formedCore

    ucp.version follows YYYY-MM-DD format.

    Version: 2026-08-25

    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.

  • Validation warnings clearCore

    Manifest passes structural and field-level rules.

    2 warnings

    Why it matters

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

  • Spec & schema URLs resolve (14)Core

    Resolves the 14 spec/schema URLs declared across the manifest to confirm agents can fetch each one.

    All 14 URLs resolved.

    Why it matters

    Spec and schema URLs let agents validate request/response shapes before sending. Broken URLs degrade runtime validation to "best effort" and cause strict agents to refuse the capability entirely.

Capability Coverage3/4 passed

What operations can agents actually perform?

  • Capabilities declaredCore

    Number of agent-readable capabilities under ucp.capabilities.

    4 capabilities 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.

    dev.ucp.shopping.checkout detected

    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.

    MCP

    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.

    Empty array — checkout-link redirect strategy

    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.

/llms.txt content

The plain-text brief this store publishes to AI agents. Captured on the most recent check.

1.1 KBa2ea2b2f49eee928
# Fazy

> Fazy is a price-checked deals catalogue for US shoppers, rebuilt daily from live retailer inventory across home, wellness, apparel, footwear and electronics. Every listing carries the current price, the retailer's own reference price and a verified discount, and is retired the moment a link or price breaks. Fazy is not the seller: it hands the shopper to the retailer's checkout.

## For agents

- Search (JSON): https://fazy.com/api/v1/deals/search?q=standing+desk — free, keyless, 60/min per address
- One deal: https://fazy.com/api/v1/deals/{id}
- OpenAPI: https://fazy.com/api/v1/openapi.json
- MCP (Streamable HTTP, read-only, three tools): POST https://fazy.com/mcp
- Docs: https://fazy.com/developers

Send `X-Fazy-Agent: <your-agent-name>` and give shoppers the `url` field unchanged: it redirects to the retailer and attributes the click to you.

## For readers and crawlers

- Buying guides: https://fazy.com/best
- Categories: https://fazy.com/category/home · /wellness · /apparel · /footwear · /electronics · /appliances · /cosmetics
- Sitemap: https://fazy.com/sitemap.xml
- Editorial standards: https://fazy.com/editorial-standards
View source ↗

Capabilities Detected

UCP capabilities supported by this endpoint
Cart ✓ Bound 2026-08-25
Order Management ✓ Bound 2026-08-25
Checkout 2026-08-25
Discount Extension 2026-08-25
Fulfillment Extension 2026-08-25
Buyer Consent Extension 2026-08-25
Catalog Lookup ✓ Bound 2026-08-25
Dev Shopify Catalog Extension ✓ Bound 2026-08-25
Dev Shopify Catalog Global Extension ✓ Bound 2026-08-25
Catalog Search ✓ Bound 2026-08-25

Technical Vitals

Technical details for this UCP endpoint
UCP Status Verified
Endpoint https://fazy.com/.well-known/ucp
HTTP Status 200
UCP Version 2026-08-25
Transports MCP
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 fazy.com badge for https://ucpchecker.com/score/fazy.comLive preview
Markdown
[![UCP Score for fazy.com](https://ucpchecker.com/score/fazy.com/badge.svg)](https://ucpchecker.com/score/fazy.com)
HTML
<a href="https://ucpchecker.com/score/fazy.com"><img src="https://ucpchecker.com/score/fazy.com/badge.svg" alt="UCP Score for fazy.com"></a>
New · Early access open
Is fazy.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 fazy.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.