UCP Checker
Back to status
matchperfumes.com icon
UCP Score

UCP Score for matchperfumes.com

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

Verified
A95/100
Analyzed Sep 22, 2026 · 4 recommendations ·Salla · v2026-04-08 upgrade
95
/ 100
UCP Conformance Score
A

matchperfumes.com publishes a conforming manifest with broad capability coverage.

Agent Discovery100
UCP Conformance88
Capability Coverage100
Working

Agent Discovery is solid (100/100).

Start Here

Use reverse-domain capability keys → Use reverse-domain payment handler keys → Use YYYY-MM-DD for handler version

Verified

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

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

Top Priorities

1
Use reverse-domain capability keys

A capability key does not match reverse-domain format (e.g. dev.ucp.shopping.checkout).

Medium impact Low effort
2
Use reverse-domain payment handler keys

A payment handler key is not in reverse-domain format.

Medium impact Low effort
3
Use YYYY-MM-DD for handler version

A payment handler version is not in YYYY-MM-DD format.

Medium impact Low effort

Impact & Effort Matrix

Prioritised recommendations by expected impact and implementation effort

Quick Wins(0)

High impact, low effort

  • No items
Strategic Investments(0)

High impact, high effort

  • No items
Incremental Gains(3)

Medium impact & effort

  • Use reverse-domain capability keys
  • Use reverse-domain payment handler keys
  • Use YYYY-MM-DD for handler version
Consider Later(1)

Lower priority

  • Upgrade to the latest UCP spec version

Recommendations

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

1

Use reverse-domain capability keys

Medium impact Low effort ×9

A capability key does not match reverse-domain format (e.g. dev.ucp.shopping.checkout).

Why it matters

Capability namespaces use reverse-domain identifiers to avoid collisions when stores extend the spec. "checkout" is ambiguous; "dev.ucp.shopping.checkout" is unambiguous.

Show fix
"capabilities": {
  "dev.ucp.shopping.checkout": [...]
}
UCP_CAPABILITY_INVALID_KEY
2

Use reverse-domain payment handler keys

Medium impact Low effort

A payment handler key is not in reverse-domain format.

Why it matters

Handlers use reverse-domain identifiers (e.g. com.google.pay, com.stripe.terminal) so multiple stores can declare the same logical handler.

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

Use YYYY-MM-DD for handler version

Medium impact Low effort

A payment handler version is not in YYYY-MM-DD format.

Why it matters

Handler versions follow the same date-based format as everything else in UCP.

Show fix
"version": "2026-08-25"
UCP_HANDLER_INVALID_VERSION
4

Upgrade to the latest UCP spec version

Low impact Low effort

Your manifest declares a valid but older spec version. A newer published version is available.

Why it matters

Older versions stay valid (agents pin to the version you declare), but newer agent capabilities — embedded checkout, AP2 mandates, identity linking, 3DS payment authentication, payment terms and location lookup — only resolve against the latest spec. The manifest envelope barely moved: signing_keys went from inside ucp to the root as of 2026-04-08, and v2026-08-25 replaced it with keys (a JWK Set). Everything else in v2026-08-25 changed in the capability vocabulary, not the envelope.

Show fix

Bump version to 2026-08-25 and publish your public keys as a root-level keys array (JWK Set). Legacy signing_keys is still accepted, at the root or nested, but keys is the canonical field every verifier reads. See /specs/2026-08-25 for the full release notes.

"ucp": {
  "version": "2026-08-25",
  ...
},
"keys": [ ... ]   // JWK Set, sibling of ucp, not nested inside
UCP_VERSION_OUTDATED

Full Check Breakdown

Every signal we evaluate, grouped by category.

Agent Discovery8/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.

    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.

  • Spec 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.

  • Validation warnings clearCore

    Manifest passes structural and field-level rules.

    11 warnings

    Why it matters

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

Capability Coverage3/4 passed

What operations can agents actually perform?

  • Capabilities declaredCore

    Number of agent-readable capabilities under ucp.capabilities.

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

    REST, 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.

    No handlers declared

    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.

7.2 KB66ac0c1a7358170b
mentions UCP
# Matchperfumes

> متجر Matchperfumes متخصص في إنتاج وبيع العطور المستوحاة التي تماثل الروائح العالمية الشهيرة بجودة عالية وثبات وفوحان ممتاز. يقدم المتجر تشكيلة واسعة تشمل العطور الرجالية والنسائية، أطياب المسك، ومعطرات المنزل، بالإضافة إلى مجموعات الهدايا المتكاملة. يستهدف المتجر عشاق العطور في المملكة العربية السعودية الباحثين عن تجربة عطرية فاخرة بأسعار اقتصادية وتنافسية.
>
> تتراوح أسعار العطور الفردية حول 75 ريال سعودي، بينما تبدأ المجموعات والصناديق الاقتصادية من 154 ريال وتصل إلى 300 ريال. يوفر المتجر خدمة التوصيل المجاني للطلبات التي تزيد قيمتها عن 100 ريال سعودي، مع سياسة واضحة للاستبدال والاسترجاع لضمان رضا العملاء.
>
> يتميز المتجر بتقديم بدائل عطرية دقيقة للبراندات العالمية بتركيز عالي، مما يجعله وجهة مثالية لمن يبحث عن التميز العطري دون التكلفة العالية للعطور الأصلية.
- WhatsApp: +966125785690
- Mobile: 920032057
- Email: [email protected]


## Supported Languages

- العربية (rtl)

## Payment Methods

## Product Categories

- [عطور نسائية](https://matchperfumes.com/ar/-/c1598589842): تشكيلة من العطور المستوحاة المصممة خصيصاً للنساء
- [عطور رجالية](https://matchperfumes.com/ar/-/c1639460503): روائح قوية ومنعشة مستوحاة تناسب الرجال
- [أطياب المسك](https://matchperfumes.com/ar/-/c1046757480): مجموعة من أفخر أنواع المسك بتركيبات متنوعة
- [هدايا ومجموعات](https://matchperfumes.com/ar/-/c127420995): صناديق عطرية فاخرة مثالية للإهداء والمناسبات
- [ماتش بيوتي](https://matchperfumes.com/ar/-/c1245281349): منتجات تجميل وعناية مختارة من علامة ماتش
- [معطرات المنزل](https://matchperfumes.com/ar/-/c1469135198): بخاخات ومعطرات جو مستوحاة للمنزل

## Top Products

- [مسك روج](https://matchperfumes.com/ar/musk-rouge-perfume/p1644963607): عطر مسك بلمسات زهرية ناعمة، 75 ريال
- [مجموعة هارودز](https://matchperfumes.com/ar/Harrods-collection/p663704727): باقة مختارة من العطور المستوحاة من روائح هارودز الشهيرة، 154 ريال
- [ماتش انقلس](https://matchperfumes.com/ar/match-angeles-perfume/p1377405362): عطر مستوحى يتميز بالثبات العالي والفوحان القوي، 75 ريال — ★ 4.8/5 (17 reviews)
- [مجموعه الصيف (21 عطر)](https://matchperfumes.com/ar/Summer-Collection/p892087745): صندوق متكامل يضم 21 عينة من العطور الصيفية المنعشة، 299 ريال
- [مجموعة وينتر بارادايس](https://matchperfumes.com/ar/winter-parades-bundle/p1775220796): مجموعة عطور شتوية دافئة للمناسبات، 300 ريال
- [ماتش سي](https://matchperfumes.com/ar/match-c-perfume/p922721477): عطر مستوحى برائحة مميزة وجذابة، 75 ريال — ★ 4.8/5 (5 reviews)
- [مسك بورا](https://matchperfumes.com/ar/musk-bora-perfume/p637987361): عطر مسك منعش للاستخدام اليومي، 75 ريال
- [ماتش فويس](https://matchperfumes.com/ar/match-voice-perfume/p1607920119): عطر يومي منعش بفوحان ممتاز، 75 ريال — ★ 4.8/5 (24 reviews)
- [ماتش 22](https://matchperfumes.com/ar/match-22-perfume/p270513852): عطر مستوحى بتركيبة فريدة وثبات عالٍ، 75 ريال — ★ 5/5 (3 reviews)
- [سنتال ماتش 33](https://matchperfumes.com/ar/santal-match-33-perfume/p61294834): عطر خشبي دافئ مستوحى من رائحة السنتال، 75 ريال — ★ 4.7/5 (19 reviews)
- [ماتش كوكو](https://matchperfumes.com/ar/match-coco-perfume/p245681902): عطر نسائي مستوحى يجمع بين الأناقة والكلاسيكية، 75 ريال — ★ 5/5 (49 reviews)
- [ماتش وذ يو](https://matchperfumes.com/ar/match-with-you-perfume/p456313303): عطر للجنسين مستوحى من الروائح العالمية، 75 ريال — ★ 5/5 (11 reviews)
- [ديسكفري سيت العيد](https://matchperfumes.com/ar/ramadan-discovery/p1659772475): مجموعة عينات متنوعة لاكتشاف الروائح، 75 ريال
- [ماتش أوبيوم](https://matchperfumes.com/ar/match-opium-perfume/p575521824): عطر سهرة شرقي غامض ومستوحى، 75 ريال — ★ 4.8/5 (24 reviews)
- [توزيعات العيد (10 عطور)](https://matchperfumes.com/ar/Eid-Giveaways-Box/p936570609): مجموعة مصغرة مخصصة للإهداء في المناسبات، 175 ريال
- [ماتش مليون](https://matchperfumes.com/ar/match-million-perfume/p582997910): عطر رجالي مستوحى يتميز بالجاذبية، 75 ريال — ★ 4.7/5 (22 reviews)
- [ماتش تايقر](https://matchperfumes.com/ar/match-tygar-perfume/p280651348): عطر رجالي مستوحى (غير متوفر حالياً)، 75 ريال

## Buying Guides

- [ماهي العطور المستوحاة؟](https://matchperfumes.com/ar/redirect/pages/1408935312): دليل تعريفي يشرح مفهوم العطور المستوحاة ومعايير جودتها

## Support / FAQ

- [من نحن](https://matchperfumes.com/ar/redirect/pages/2012371957): معلومات حول هوية المتجر وتخصصه في العطور
- [سياسة الاستبدال أو الاسترجاع](https://matchperfumes.com/ar/redirect/pages/329619959): تفاصيل وشروط إرجاع واستبدال المنتجات
- [سياسة الخصوصية وسرية المعلومات](https://matchperfumes.com/ar/redirect/pages/1105165046): معلومات حول حماية بيانات العملاء
- [فروعنا](https://matchperfumes.com/ar/redirect/pages/1138853030): قائمة بمواقع فروع المتجر الفعلية

## Docs

- [API Catalog](https://matchperfumes.com/.well-known/api-catalog): Full list of available store API endpoints
- [MCP](https://matchperfumes.com/mcp): Model Context Protocol endpoint for AI tool integration
- [UCP](https://matchperfumes.com/.well-known/ucp): Universal Commerce Protocol discovery — agent-facing catalog search, cart, and checkout
- [Sitemap](https://matchperfumes.com/sitemap.xml): Complete sitemap of all store pages and products
- [Robots.txt](https://matchperfumes.com/robots.txt): Crawl and indexing directives for search engines
- [OAuth Discovery](https://matchperfumes.com/.well-known/openid-configuration): OAuth 2.0/OpenID Connect discovery endpoint

Any store page can be returned as markdown by sending `Accept: text/markdown` in the request headers.
View source ↗

Capabilities Detected

UCP capabilities supported by this endpoint
Checkout 2026-04-08
Cart 2026-04-08
Catalog Search 2026-04-08
Catalog Lookup 2026-04-08
Fulfillment 2026-04-08
Discount 2026-04-08
Buyer Consent 2026-04-08
Order Management 2026-04-08
Identity Linking 2026-04-08

Technical Vitals

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