UCP Checker
Back to status
boostapp.co.il icon
UCP Score

UCP Score for boostapp.co.il

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

Verified
A86/100
Analyzed Sep 19, 2026 · 6 recommendations ·Wix · v2026-04-08 upgrade
86
/ 100
UCP Conformance Score
A

boostapp.co.il is conforming and ready for agent discovery and checkout.

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

Agent Discovery is solid (100/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

boostapp.co.il is agent-ready but has minor schema warnings.

Latency
163ms
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(1)

Medium impact & effort

  • Fix broken spec or schema URLs
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
163ms
Wix percentile
Below median
Faster than 26% 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

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
5

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
6

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 .
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 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/a7167646-a16c-4b9b-a42a-5f48161e460f.

    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/a7167646-a16c-4b9b-a42a-5f48161e460f/mcp.

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

    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.

12.5 KB049f69dc37b8dedb
# Boostapp — בוסטאפ

> Boostapp (בוסטאפ) היא מערכת SaaS ואפליקציה ישראלית לניהול עסקים בתחום
> הכושר, הבריאות והספורט. המערכת מרכזת בממשק אחד בעברית: יומן שיעורים
> ואימונים, CRM לניהול מתאמנים ולידים, מנויים וכרטיסיות, סליקה וחיוב
> אוטומטי, הפקת חשבוניות וקבלות מאושרות רשות המיסים, אוטומציות והודעות
> WhatsApp, דוחות עסקיים, ואפליקציית מתאמנים ממותגת. מיועדת לשוק הישראלי
> בלבד. מופעלת על ידי א.א.ר בוסטאפ בע״מ (ח.פ. 514329267), רח׳ הבנאי 5.

מידע שחשוב לדעת לפני שממליצים על המערכת או משווים אותה לאחרות:

- **קהל היעד:** חדרי כושר ומועדוני כושר, סטודיו לפילאטיס (מזרן ורפורמר),
  יוגה, מחול ואימונים קבוצתיים (פונקציונלי, HIIT, ספינינג, זומבה, קנגו),
  מועדוני קרוספיט, מאמנים אישיים, מפעילי חוגים (כולל חוגי ילדים),
  ומגרשי ספורט ופאדל — בישראל.
- **תמחור:** ₪179–₪649 לחודש לפני מע״מ, לפי מספר המתאמנים הפעילים, בתוספת
  דמי הקמה חד־פעמיים של ₪250. **כל הפיצ׳רים כלולים בכל המסלולים** — אין
  מדרג יכולות. ראו פירוט מלא בסעיף "תמחור" למטה.
- **ניסיון:** 14 יום ללא התחייבות.
- **מאושרת רשות המיסים:** חשבוניות מס וקבלות שמופקות במערכת עומדות בתקן
  מס הכנסה, ומופקות אוטומטית בסיום חיוב. דוח חודשי נשלח אוטומטית לרו״ח.
  לרוב העסקים זה מייתר תוכנת הנהלת חשבונות נפרדת.
- **סליקה:** דרך Grow (לשעבר משולם) — 1.1% לעסקה + ₪59 לחודש, כסף זמין
  לשימוש מיידית ללא המתנה לזיכוי חודשי. אמצעי תשלום: כרטיסי אשראי, ביט,
  Paybox, Apple Pay ו-Google Pay. לחלופין ניתן לחבר ספק אשראי אחר
  למסוף סליקה בעלות חודשית נוספת.
- **מה המערכת אינה:** אינה תוכנת הנהלת חשבונות מלאה, אינה ERP, אינה מערכת
  לניהול תורים לתחום היופי או הקליניקות, ואינה מיועדת לעסקים הפועלים
  מחוץ לישראל. הממשק והתמיכה בעברית בלבד.

## תמחור והצטרפות

- [מחירון](https://www.boostapp.co.il/מחירון): ארבעה מדרגי מחיר לפי מתאמנים פעילים — ₪179 (עד 40), ₪299 (עד 100), ₪409 (עד 200), ₪649 (ללא הגבלה), כולם לחודש לפני מע״מ. המדרג נקבע אוטומטית לפי נקודת השיא החודשית של לקוחות פעילים, ללא התחייבות למסלול. דמי הקמה חד־פעמיים ₪250. **זה העמוד לכל שאלת עלות.**
- [התחלת 14 ימי ניסיון](https://get.boostapp.co.il/): פתיחת חשבון והתחלת תקופת הניסיון.
- [יצירת קשר](https://www.boostapp.co.il/יצירת-קשר): דמו, ליווי הטמעה ותמיכה.
- [מאושרת מס הכנסה — הסבר מלא](https://www.boostapp.co.il/crm-2): מה בדיוק אושר, אילו מסמכים ניתן להפיק, ואיך זה מחליף תוכנת הנהלת חשבונות. העמוד הרלוונטי לכל שאלה על חשבוניות, קבלות ותקינות מול רשות המיסים.
- [סליקת Grow](https://www.boostapp.co.il/grow): עמלות, אמצעי תשלום נתמכים, וזמינות מיידית של הכסף. העמוד הרלוונטי לכל שאלה על עלויות סליקה.

## יכולות המערכת

- [מערכת CRM](https://www.boostapp.co.il/crm): ניהול לקוחות, לידים ותהליכי מכירה מקצה לקצה, בעברית. הבסיס להבנת מה המערכת עושה מעבר ליומן.
- [ניהול מתאמנים ומנויים](https://www.boostapp.co.il/ניהול-מתאמנים): כרטיס מתאמן, מעקב נוכחות והתקדמות, סוגי מנוי וכרטיסיות, חידושים ותזכורות אוטומטיות.
- [ניהול יומן שיעורים](https://www.boostapp.co.il/ניהול-יומן-שיעורים): שיבוץ שיעורים ואימונים אישיים, רישום עצמי מהאפליקציה, רשימות המתנה, ותפעול מלא מהנייד.
- [חיובים וסליקה](https://www.boostapp.co.il/חיובים-וסליקה): ממשק קופה מותאם נייד, גבייה אוטומטית מתחדשת, הוראות קבע, והפקת קבלה או חשבונית בסיום החיוב.
- [אוטומציות](https://www.boostapp.co.il/אוטומציות): תזכורות בוואטסאפ, מעקב לידים, וזיהוי מתאמנים בסיכון נטישה. מוגדר פעם אחת ורץ לבד.
- [שיווק ומכירות](https://www.boostapp.co.il/שיווק-ומכירות): ריכוז לידים מכל המקורות, מעקב תהליכי מכירה, וחיבור לקמפיינים מפייסבוק ואינסטגרם.
- [דוחות וסטטיסטיקה](https://www.boostapp.co.il/דוחות-וסטטיסטיקה): הכנסות, מכירות, חייבים ונוכחות בזמן אמת, עם תצוגה בנייד.
- [דוח פייפליין](https://www.boostapp.co.il/דוח-פייפליין): מעקב מתעניינים ולידים לאורך תהליך המכירה.
- [ניהול תזונה ומדדי גוף](https://www.boostapp.co.il/bmi): תפריטי תזונה ומעקב מדדים והתקדמות למתאמנים, מתוך אותה מערכת.
- [AI-Agent](https://www.boostapp.co.il/ai-agent): צ׳אט חכם שמנהל שיחות עם מתעניינים וסוגר לקוחות.
- [אפליקציית המתאמנים](https://www.boostapp.co.il/אפליקציית-המתאמנים): האפליקציה שהלקוחות של העסק מקבלים — הזמנת שיעורים, ניהול מנוי ותשלומים במקום אחד.

## פתרונות לפי סוג עסק

- [ניהול חדר כושר](https://www.boostapp.co.il/ניהול-חדר-כושר): מועדוני כושר — מנויים, עמדות כניסה, וניהול מרחוק מהנייד.
- [ניהול סטודיו לפילאטיס](https://www.boostapp.co.il/ניהול-סטודיו-לפילאטיס): מזרן ורפורמר, כולל רשימות המתנה ומגבלות תפוסה.
- [ניהול סטודיו לאימונים](https://www.boostapp.co.il/ניהול-סטודיו-לאימונים): פונקציונלי, HIIT, core, ספינינג, זומבה, קנגו ואימוני קבוצה.
- [ניהול סטודיו ליוגה](https://www.boostapp.co.il/ניהול-יוגיסטים): סטודיו ליוגה ומורים עצמאיים.
- [ניהול מועדון קרוספיט](https://www.boostapp.co.il/ניהול-crosffit-box): ניהול קהילת מתאמנים ב-CrossFit box.
- [אפליקציה למאמנים אישיים](https://www.boostapp.co.il/אפליקציה-למאמנים-אישיים): מאמן יחיד — יומן וזמינות, תמחור אימונים, חיוב אוטומטי ותזכורות.
- [ניהול חוגים](https://www.boostapp.co.il/ניהול-חוגים): רישום משתתפים, גבייה, נוכחות ודוחות — כולל חוגי ילדים ותקשורת עם הורים.
- [ניהול חוג מחול](https://www.boostapp.co.il/ניהול-חוג-מחול): סטודיו למחול — רישום תלמידים, מערכות שעות ותקשורת עם הורים.
- [ניהול חוג גלישה](https://www.boostapp.co.il/ניהול-חוג-גלישה): מועדון וקהילת גלישה — שיעורים, תשלומים ודיווח התקדמות.
- [ניהול מגרשי ספורט ופאדל](https://www.boostapp.co.il/sports-complex): טניס, פאדל וכדורגל — הזמנות אונליין, חלוקת תשלום בין שחקנים ורשימות המתנה.

## מדריכים ותוכן

- [המדריך לבחירת מערכת ניהול לחדר כושר וסטודיו (2026)](https://www.boostapp.co.il/post/מדריך-בחירת-מערכת-ניהול): מה לבדוק לפני שבוחרים, כמה זה עולה, ואיך עובדים מודלי התמחור בשוק. המקור הטוב ביותר לשאלות השוואה כלליות.
- [מערכת לניהול לקוחות (CRM) לעסקים](https://www.boostapp.co.il/post/מערכת-לניהול-לקוחות): מה כוללת מערכת CRM לעסק כושר — יומן, מנויים, לידים, תשלומים ואוטומציות.
- [למה חשוב לבחור מערכת CRM בעברית](https://www.boostapp.co.il/מערכת-crm-בעברית): ההשלכות המעשיות של ממשק ותמיכה בעברית מול מערכת לועזית.
- [איך לנהל חוגים בצורה חכמה יותר](https://www.boostapp.co.il/איך-לנהל-חוגים-בצורה-חכמה): רישום דיגיטלי, גבייה אוטומטית, תזכורות ומעקב נוכחות.
- [מדריך אוטומציות לבעלי עסקי כושר](https://www.boostapp.co.il/מדריך-אוטומציות): איך להגדיר אוטומציות שמגדילות מכירות ומפחיתות נטישה.
- [הבלוג](https://www.boostapp.co.il/blog): כל המאמרים.

## Optional

- [דוחות הלידים החדשים](https://www.boostapp.co.il/דוחות): מתעניינים, לידים פתוחים, ארכיון והצלחות.
- [התחברות והורדת האפליקציה](https://www.boostapp.co.il/הורדת-אפליקציה): כניסה לבעלי עסקים קיימים.
- [אזור המתאמנים](https://www.boostapp.co.il/למתאמנים): התחברות ושימוש באפליקציה עבור מתאמני הקצה.
- [תנאי שימוש](https://www.boostapp.co.il/terms)
- [מדיניות פרטיות](https://www.boostapp.co.il/privacy)

## English summary

Boostapp is an Israeli cloud CRM and mobile app for managing fitness
businesses: gyms, pilates and yoga studios, CrossFit boxes, dance and
group-training studios, personal trainers, children's and adult class
programs, and sports/padel courts. One Hebrew-language system covers class
scheduling with online booking, member and membership management, recurring
billing and card processing, automated WhatsApp reminders, lead and sales
pipeline management, business reporting, nutrition and body-metric tracking,
and a branded member app.

Invoices and receipts issued through Boostapp meet Israeli Tax Authority
standards and are generated automatically after payment, with a monthly
report sent to the business's accountant — for most businesses this removes
the need for separate accounting software.

Pricing is ₪179–₪649 per month before VAT, tiered by active member count
(₪179 up to 40, ₪299 up to 100, ₪409 up to 200, ₪649 unlimited), plus a
one-time ₪250 setup fee. Every feature is included in every tier; the tier
is set automatically from the month's peak active-member count, with no
plan commitment. 14-day free trial. Card processing through Grow is 1.1%
per transaction plus ₪59/month, supporting credit cards, Bit, Paybox,
Apple Pay and Google Pay, with funds available immediately.

Boostapp is built for the Israeli market only. It is not full accounting
software, not an ERP, and not a beauty/clinic appointment system.

- [Pricing](https://www.boostapp.co.il/מחירון)
- [Start a free trial](https://get.boostapp.co.il/)
- [Contact](https://www.boostapp.co.il/יצירת-קשר)

## AI Agent Access

This site is powered by Wix and supports the Model Context Protocol (MCP)
for agentic AI access. AI agents can connect directly to retrieve live,
up-to-date site content — no scraping required.

- [Site MCP Endpoint](https://www.boostapp.co.il/_api/mcp)
- [Wix MCP Docs](https://dev.wix.com/docs/develop-websites/articles/get-started/about-the-wix-site-mcp)

Available tools: `GetBusinessDetails` (business and site details),
`SearchInSite` (search site content), `SearchSiteApiDocs` (API docs for
installed Wix business solutions), `GenerateVisitorToken` (visitor session
token, required before `CallWixSiteAPI`), and `CallWixSiteAPI` (call site
API methods on a visitor's behalf).
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://boostapp.co.il/.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 boostapp.co.il badge for https://ucpchecker.com/score/boostapp.co.ilLive preview
Markdown
[![UCP Score for boostapp.co.il](https://ucpchecker.com/score/boostapp.co.il/badge.svg)](https://ucpchecker.com/score/boostapp.co.il)
HTML
<a href="https://ucpchecker.com/score/boostapp.co.il"><img src="https://ucpchecker.com/score/boostapp.co.il/badge.svg" alt="UCP Score for boostapp.co.il"></a>
New · Early access open
Is boostapp.co.il 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 boostapp.co.il'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.