UCP Checker
Back to status
centuryrides.pages.dev icon
UCP Score

UCP Score for centuryrides.pages.dev

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

Verified
B84/100
Analyzed Sep 17, 2026 · 3 recommendations ·Custom · v2026-08-25 latest
84
/ 100
UCP Conformance Score
B

Solid UCP setup on centuryrides.pages.dev with a few gaps left to close.

Agent Discovery90
UCP Conformance97
Capability Coverage60
Working

UCP Conformance is solid (97/100).

Start Here

Use YYYY-MM-DD for handler version → Publish Organization schema (JSON-LD) on the homepage → Add Open Graph meta tags to the homepage

Verified

centuryrides.pages.dev is agent-ready but has minor schema warnings.

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

Top Priorities

1
Use YYYY-MM-DD for handler version

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

Medium impact Low effort
2
Publish Organization schema (JSON-LD) on the homepage

No Organization-typed JSON-LD detected on your homepage.

Medium impact Medium 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(0)

High impact, low effort

  • No items
Strategic Investments(0)

High impact, high effort

  • No items
Incremental Gains(2)

Medium impact & effort

  • Use YYYY-MM-DD for handler version
  • Publish Organization schema (JSON-LD) on the homepage
Consider Later(1)

Lower priority

  • Add Open Graph meta tags to the homepage

How you compare on Custom

Response time benchmarked against 106 Customs we monitor.

fastCustom median 342msslow
Your store
63ms
Custom percentile
Top 1%
Faster than 99% of Custom stores
Cohort range
219–618ms
p25 to p75 (middle half)
Headless / custom stackCustom-built storefronts have the most flexibility but also the most surface area for inconsistency between environments. Run the score in staging before each deploy that touches manifest, schemas, or transports.

Recommendations

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

1

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
2

Publish Organization schema (JSON-LD) on the homepage

Medium impact Medium effort

No Organization-typed JSON-LD detected on your homepage.

Why it matters

Organization schema gives agents a structured representation of your brand identity — name, logo, social profiles, contact info, founding date. Agents use this to verify you are who you claim to be and to link your manifest data to a recognizable entity.

Show fix

Drop into <head> or end of <body>. Use OnlineStore (more specific) when the entire site is an ecommerce store; Organization is the generic fallback.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "OnlineStore",
  "name": "Yourstore",
  "url": "https://yourstore.com",
  "logo": "https://yourstore.com/logo.png",
  "sameAs": [
    "https://twitter.com/yourstore",
    "https://www.instagram.com/yourstore"
  ],
  "contactPoint": {
    "@type": "ContactPoint",
    "telephone": "+1-800-000-0000",
    "contactType": "Customer Service"
  }
}
</script>
UCP_MISSING_ORG_SCHEMA
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.

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

    Missing or incomplete on homepage

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

    1 warning

    Why it matters

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

Capability Coverage2/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.

    REST

    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.

    2 handlers registered

    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.

2.1 KB94293c7623076250
mentions UCP
# CenturyRides.org

> The authoritative open directory of 100-mile / 100-kilometer (century/metric century) cycling events, alpine challenges, and gravel endurance rides across North America (United States, Canada, and Mexico).

## Overview
CenturyRides.org provides programmatic and human access to organized century rides across North America. Each entry contains verified geographical location, sub-region, calendar month, official destination URL, terrain tags, and route elevation details.

## Machine Readable Interfaces
- Universal Commerce Protocol (UCP): `/.well-known/ucp`
- OpenAPI 3.1 Specification: `/.well-known/openapi.yaml`
- Extended Agent Specification: `/.well-known/agent.json`, `/llms-full.txt`
- Query & Search API: `/api/rides` (GET - x402 Micropayment enabled for automated queries)
- Free Preview Discovery Tier: `/api/rides/summary` (GET)
- Submission Ingestion: `/api/rides` (POST)
- Model Context Protocol (MCP) Server: Available in the `/mcp-server` repository directory for local agent installation (Stdio).

## Programmatic SEO Directory
- Programmatic Hub Directory: `/century-rides/` (Complete North American index)
- 50 US State Guides: `/century-rides/<state-slug>/` (e.g. `/century-rides/california/`, `/century-rides/indiana/`, `/century-rides/colorado/`)
- 12 Month Seasonal Calendars: `/century-rides/<month-slug>/` (e.g. `/century-rides/september/`, `/century-rides/june/`)

## Key Resources
- Demo Mode (Clean UI): `/demo.html`
- 12-Week Century Training Guide: `/guide.html` (Comprehensive endurance, pacing, and fueling protocol for a 100-mile ride)
- Brand Assets & Logos: `/brand.html`
- Frequently Asked Questions: `/faq.html` (Differences between metric/imperial, training, pacing, and fueling guidelines)

## Key Entities
- **Century Ride (100 Miles)**: Single-day or multi-day bicycle event with a sanctioned 100-mile route.
- **Regions**: Indexed sub-state zones (e.g., Blue Ridge, Driftless Area, Suwannee River, Flint Hills).
- **Surface Disciplines**: Road, Alpine / Mountain Pass, Gravel / Mixed-Surface, Rail-Trail, Urban.
View source ↗

Capabilities Detected

UCP capabilities supported by this endpoint
Catalog Search ✓ Bound 2026-08-25

Technical Vitals

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