UCP Checker
Back to status
blacktoon.store icon
UCP Score

UCP Score for blacktoon.store

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

Verified
B84/100
Analyzed Sep 19, 2026 · 7 recommendations ·Wix · v2026-04-08 upgrade
84
/ 100
UCP Conformance Score
B

Solid UCP setup on blacktoon.store with a few gaps left to close.

Agent Discovery95
UCP Conformance81
Capability Coverage77
Biggest blockers
Publish keys at the manifest rootRepair declared transport endpoints
Working

Agent Discovery is solid (95/100).

Blocking

Publish keys at the manifest root — Agents have nothing to verify your responses against.

Start Here

Publish keys at the manifest root → Repair declared transport endpoints → Fix broken spec or schema URLs

Verified

blacktoon.store is agent-ready but has minor schema warnings.

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

Top Priorities

1
Publish keys at the manifest root

Agents have nothing to verify your responses against.

High impact Medium effort
2
Repair declared transport endpoints

One or more declared transport endpoints did not respond when probed.

High impact Medium effort
3
Fix broken spec or schema URLs

One or more spec/schema URLs declared in the manifest do not resolve.

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(2)

High impact, high effort

  • Publish keys at the manifest root
  • Repair declared transport endpoints
Incremental Gains(2)

Medium impact & effort

  • Fix broken spec or schema URLs
  • Publish Organization schema (JSON-LD) on the homepage
Consider Later(3)

Lower priority

  • Confirm checkout-link redirect strategy
  • Upgrade to the latest UCP spec version
  • Publish a schema URL for the service

How you compare on Wix

Response time benchmarked against 6,773 Wixes we monitor.

fastWix median 136msslow
Your store
126ms
Wix percentile
Above median
Faster than 67% of Wix stores
Cohort range
122–165ms
p25 to p75 (middle half)

Recommendations

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

1

Publish keys at the manifest root

High impact Medium effort

Agents have nothing to verify your responses against.

Why it matters

Signing keys let agents cryptographically verify checkout responses came from you, not a man-in-the-middle. Tokenized payment flows in v2026-04-08+ require them. Since 2026-07-12 the spec's canonical field is a root-level RFC 7517 "keys" array (the legacy "signing_keys" field was removed from the profile schema; we accept both during the migration). Stores using checkout-link redirects (e.g. WooCommerce) often skip this safely.

Show fix

Generate an Ed25519 keypair, publish the public key as a JWK in a root-level "keys" array (the canonical field since spec PR #566; "signing_keys" is legacy). Rotate annually; keep "kid" stable across rotations of the same key.

{
  "keys": [
    {
      "kty": "OKP",
      "crv": "Ed25519",
      "x": "<base64url-encoded-public-key>",
      "kid": "key-2026-04",
      "alg": "EdDSA"
    }
  ],
  "ucp": { ... }
}
UCP_MISSING_SIGNING_KEYS
2

Repair declared transport endpoints

High impact Medium effort

One or more declared transport endpoints did not respond when probed.

Why it matters

A manifest that declares transports without working endpoints is the worst kind of broken — it looks perfect to static validators but agents hit a dead end the moment they try to use the capability. Connection refused, DNS failure, TLS errors, and 5xx responses all fall here. See the Full Check Breakdown below for the specific endpoints that failed.

UCP_PROBE_TRANSPORT_FAILED
3

Fix broken spec or schema URLs

Medium impact Low effort ×5

One or more spec/schema URLs declared in the manifest do not resolve.

Why it matters

Spec and schema URLs let agents validate request/response shapes before sending. When they 404 or time out, runtime validation degrades to "best effort" and strict agents reject the integration entirely. Common cause: copy-pasting a placeholder URL during initial manifest setup. See the Full Check Breakdown for the specific URLs that failed.

UCP_PROBE_URL_BROKEN
4

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
5

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
6

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
7

Publish a schema URL for the service

Low impact Medium effort

Service is missing its "schema" URL.

Why it matters

The schema lets agents validate request/response shapes before sending. Highly recommended for any non-trivial endpoint.

Show fix
"schema": "https://yourstore.com/.well-known/ucp/schemas/shopping.json"
UCP_SERVICE_MISSING_SCHEMA

Full Check Breakdown

Every signal we evaluate, grouped by category.

Functional probes ran Sep 6, 2026. Transport and URL resolution rows may be stale. Run a fresh check to re-probe.
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.

    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.

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

    No signing_keys at root (common for managed/redirect-checkout stores)

    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 (10)Core

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

    Did not resolve (5 of 10): https://ucp.dev/services/shopping/rest.openapi.json, https://ucp.dev/schemas/shopping/checkout.json, https://ucp.dev/schemas/shopping/fulfillment.json, https://ucp.dev/schemas/shopping/catalog-search.json, https://ucp.dev/schemas/shopping/catalog-lookup.json

    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/6 passed

What operations can agents actually perform?

  • Capabilities declaredCore

    Number of agent-readable capabilities under ucp.capabilities.

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

    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.

  • REST transport reachableInterop

    Live reachability check against https://www.wixapis.com/ecom/ucp/258662c0-355e-4006-9420-24a0a9ea1fa3.

    Host responded with HTTP 404 — endpoint reachable but path may be method-restricted

    Why it matters

    A declared transport that does not respond means agents will hit a dead end the moment they try to use the capability — even if the manifest itself looks perfect.

  • MCP transport reachableInterop

    Live reachability check against https://www.wixapis.com/ecom/ucp/258662c0-355e-4006-9420-24a0a9ea1fa3/mcp.

    tools/list returned a JSON-RPC response in 230ms

    Why it matters

    A declared transport that does not respond means agents will hit a dead end the moment they try to use the capability — even if the manifest itself looks perfect.

/llms.txt content

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

3.7 KB183281d681e401a1
# 2025 최신 주소 | 웹툰 애니 저장소
> 이 자료는 블랙툰, 비툰, 마나토끼, 툰코 등 여러 웹툰 다시보기 및 미리보기 사이트에 대한 정보를 집약했습니다. 이 사이트들은 최신 웹툰을 무료로 제공하며, 자주 변경되는 주소를 찾는 방법과 안전한 접속 경로를 안내합니다. 접속이 어려운 경우를 대비해 비툰, 마나토끼, 툰코와 같은 대체 사이트 이용을 추천하며, 커뮤니티 정보를 활용하는 팁도 제공합니다. 이를 통해 사용자는 광고 없이 편리하게 웹툰 콘텐츠를 즐길 수 있습니다.

## Homepage link
- [home](https://www.blacktoon.store/)

## AI 에이전트 액세스

본 사이트는 Wix 기반으로 하며 에이전트 AI 액세스를 위한 Model Context Protocol(MCP)을 지원합니다. AI 에이전트가 라이브, 최신 사이트 콘텐츠에 
직접 연결하여 가져올 수 있으며 스크래핑이 필요 없습니다.

- [**사이트 MCP 엔드포인트**](https://www.blacktoon.store/_api/mcp)
- [**Wix MCP 문서**](https://dev.wix.com/docs/develop-websites/articles/get-started/about-the-wix-site-mcp)

## 이용 가능한 MCP 도구

### GetBusinessDetails
시간대, 이메일, 전화, 주소 등 비즈니스 및 사이트 정보를 불러옵니다.
- 파라미터가 필요하지 않습니다.

### SearchInSite
사이트에서 정보를 검색합니다.
- **searchTerm** - 사이트에서 검색할 용어.

### SearchSiteApiDocs
본 사이트에 설치된 Wix 비즈니스 솔루션의 API 문서를 불러오고, AI 클라이언트에게 API 사용 방법을 안내합니다. (SearchInSite 대신) 
제품 및 서비스를 쿼리할 때 해당 도구를 사용하세요.
- **searchTerm** - 사이트 API 문서에서 검색할 용어.

### GenerateVisitorToken
새 방문자 세션을 생성하고 사이트의 방문자 액세스 토큰을 얻습니다.
컨텍스트에 방문자 토큰이 없는 경우 
CallWixSiteAPI 요청을 하기 전에 호출해야 합니다.
- 파라미터가 필요하지 않습니다.

### CallWixSiteAPI
사이트에서 API 메서드를 호출하여 방문자를 대신하여 사이트 데이터 쿼리, 
일대일 세션 예약, 구매 시작 등의 작업을 수행합니다.
- **visitorToken** - 방문자 액세스 토큰. 사용할 수 없는 경우 GenerateVisitorToken을 먼저 사용하세요.
- **url** - 호출할 API 메서드의 절대 URL(예: https://www.wixapis.com/...). SearchSiteApiDocs를 사용하여 불러오세요.
- **method** - API 호출에 사용할 HTTP 메서드.
- **body** - 유효한 JSON 문자열 형식의 요청 본문.

### ReadFullDocsArticle
Wix 개발자 문서 포털에서 전체 문서를 가져옵니다.
- **articleUrl** - Wix 개발자 문서 포털에 있는 문서의 URL.

### ReadFullDocsMethodSchema
Wix API 메서드의 전체 스키마를 가져옵니다. CallWixSiteAPI를 통해 
실제 메서드를 호출하기 전에 호출되어야 합니다.
- **articleUrl** - Wix API 메서드에 대한 참조 문서의 URL.

## AI + MCP를 통해 방문자가 할 수 있는 작업

- 비즈니스 정보 가져오기(연락처 정보, 위치, 영업시간)
- 제공되는 제품 및 서비스 둘러보기
- 서비스 예약 및 예매
- 구매 시작 및 사이트에서 체크아웃 완료
- 사이트를 검색하지 않고 질문하고 관련 답변 받기

## 참고 사항

- MCP 엔드포인트에 연결하는 데 인증이 필요하지 않습니다.
- 사이트에서 접근 가능한 공개 정보만 이용 가능합니다.
- 콘텐츠는 항상 실시간으로 최신 상태로 유지됩니다.
- 도구 업데이트를 받으려면 도구 업데이트 알림 수신 시 tools/list 호출을 구현하세요.
View source ↗

Capabilities Detected

UCP capabilities supported by this endpoint
Checkout ✓ Bound 2026-04-08
Fulfillment Extension ✓ Bound 2026-04-08
Catalog Lookup ✓ Bound 2026-04-08
Catalog Search ✓ Bound 2026-04-08

Technical Vitals

Technical details for this UCP endpoint
UCP Status Verified
Endpoint https://blacktoon.store/.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 blacktoon.store badge for https://ucpchecker.com/score/blacktoon.storeLive preview
Markdown
[![UCP Score for blacktoon.store](https://ucpchecker.com/score/blacktoon.store/badge.svg)](https://ucpchecker.com/score/blacktoon.store)
HTML
<a href="https://ucpchecker.com/score/blacktoon.store"><img src="https://ucpchecker.com/score/blacktoon.store/badge.svg" alt="UCP Score for blacktoon.store"></a>
New · Early access open
Is blacktoon.store 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 blacktoon.store'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.