← WebMCP Directory

Tool tree

cuvo.co

liveHealth & Education
https://cuvo.co/
Cuvo is the white label telehealth platform that runs the clinic behind your brand: 50-state providers, pharmacy, software, and compliance. Launch in days.
Explore capabilities
scan_images_c2paAnswer

Scan every <img> on the current page for C2PA Content Credentials (content provenance metadata) and return a per-image summary: whether a manifest is present, the claim generator (the tool that produced or edited the image), the title, and the signer name. Use this to find which images on a page carry provenance data. Note: provenance is decoded but NOT cryptographically verified.

View tool JSON
{
  "name": "scan_images_c2pa",
  "kind": "answer",
  "impl": "imperative",
  "description": "Scan every <img> on the current page for C2PA Content Credentials (content provenance metadata) and return a per-image summary: whether a manifest is present, the claim generator (the tool that produced or edited the image), the title, and the signer name. Use this to find which images on a page carry provenance data. Note: provenance is decoded but NOT cryptographically verified.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 100,
        "default": 25,
        "description": "Maximum number of images to fetch and scan (default 25, max 100)."
      }
    },
    "required": []
  },
  "page": "/"
}
inspect_image_c2paAnswer

Fetch a single image (by CSS selector or URL) and return its fully decoded C2PA manifest store: every manifest's claim, assertions (e.g. c2pa.actions edit history, schema.org authorship), and the COSE signature details (algorithm and signing-certificate identity). Provide exactly one of `selector` or `url`. Note: the signature is decoded but NOT cryptographically verified.

View tool JSON
{
  "name": "inspect_image_c2pa",
  "kind": "answer",
  "impl": "imperative",
  "description": "Fetch a single image (by CSS selector or URL) and return its fully decoded C2PA manifest store: every manifest's claim, assertions (e.g. c2pa.actions edit history, schema.org authorship), and the COSE signature details (algorithm and signing-certificate identity). Provide exactly one of `selector` or `url`. Note: the signature is decoded but NOT cryptographically verified.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "selector": {
        "type": "string",
        "maxLength": 8192,
        "description": "CSS selector for an <img> element on the page."
      },
      "url": {
        "type": "string",
        "maxLength": 8192,
        "description": "Image URL (absolute, or relative to the current page) to fetch and inspect."
      }
    },
    "required": []
  },
  "page": "/"
}
get_overviewAnswer

What Cuvo Health is, who it is for, and the canonical FAQ: the white label telehealth platform that operates the licensed clinic behind consumer brands.

View tool JSON
{
  "name": "get_overview",
  "kind": "answer",
  "impl": "imperative",
  "description": "What Cuvo Health is, who it is for, and the canonical FAQ: the white label telehealth platform that operates the licensed clinic behind consumer brands.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": [],
    "additionalProperties": false
  },
  "page": "/"
}
get_pricingAnswer

Cuvo's published pricing as markdown: plan tiers with setup fees, the flat $25 per-consult fee, 0% medication markup, commercial terms, and add-ons.

View tool JSON
{
  "name": "get_pricing",
  "kind": "answer",
  "impl": "imperative",
  "description": "Cuvo's published pricing as markdown: plan tiers with setup fees, the flat $25 per-consult fee, 0% medication markup, commercial terms, and add-ons.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": [],
    "additionalProperties": false
  },
  "page": "/"
}
list_comparisonsAnswer

List every Cuvo-vs-competitor comparison page (slug, competitor name, one-line summary, facts-reviewed date).

View tool JSON
{
  "name": "list_comparisons",
  "kind": "answer",
  "impl": "imperative",
  "description": "List every Cuvo-vs-competitor comparison page (slug, competitor name, one-line summary, facts-reviewed date).",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": [],
    "additionalProperties": false
  },
  "page": "/"
}
get_comparisonAnswer

Full text (markdown) of one Cuvo-vs-competitor comparison page, by slug from list_comparisons.

View tool JSON
{
  "name": "get_comparison",
  "kind": "answer",
  "impl": "imperative",
  "description": "Full text (markdown) of one Cuvo-vs-competitor comparison page, by slug from list_comparisons.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "slug": {
        "type": "string",
        "description": "Comparison slug, e.g. \"cuvo-vs-wheel\""
      }
    },
    "required": [
      "slug"
    ],
    "additionalProperties": false
  },
  "page": "/"
}
list_articlesAnswer

List every published article on the Cuvo blog (slug, title, excerpt, date, category): telehealth compliance, pharmacy, and growth guides.

View tool JSON
{
  "name": "list_articles",
  "kind": "answer",
  "impl": "imperative",
  "description": "List every published article on the Cuvo blog (slug, title, excerpt, date, category): telehealth compliance, pharmacy, and growth guides.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": [],
    "additionalProperties": false
  },
  "page": "/"
}
get_articleAnswer

Full text (markdown) of one published article, by slug from list_articles.

View tool JSON
{
  "name": "get_article",
  "kind": "answer",
  "impl": "imperative",
  "description": "Full text (markdown) of one published article, by slug from list_articles.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "slug": {
        "type": "string",
        "description": "Article slug, e.g. \"dea-telemedicine-flexibilities-2026\""
      }
    },
    "required": [
      "slug"
    ],
    "additionalProperties": false
  },
  "page": "/"
}
get_availabilityAnswer

Next open 30-minute discovery-call slots on the Cuvo team's calendar, in the user's timezone. Call before offering any times; returns each slot's startIso and human label.

View tool JSON
{
  "name": "get_availability",
  "kind": "answer",
  "impl": "imperative",
  "description": "Next open 30-minute discovery-call slots on the Cuvo team's calendar, in the user's timezone. Call before offering any times; returns each slot's startIso and human label.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "timezone": {
        "type": "string",
        "description": "IANA timezone of the user, e.g. \"America/New_York\". Defaults to America/New_York."
      }
    },
    "required": [],
    "additionalProperties": false
  },
  "page": "/"
}
book_discovery_callSensitive Action

Book a real 30-minute Cuvo discovery call for the user. Requires their explicit confirmation of a specific slot from get_availability plus their real full name and email; the calendar invite goes to that email. Do not book without the user's consent.

View tool JSON
{
  "name": "book_discovery_call",
  "kind": "transact",
  "impl": "imperative",
  "description": "Book a real 30-minute Cuvo discovery call for the user. Requires their explicit confirmation of a specific slot from get_availability plus their real full name and email; the calendar invite goes to that email. Do not book without the user's consent.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "User's full name"
      },
      "email": {
        "type": "string",
        "description": "User's email (receives the invite)"
      },
      "phone": {
        "type": "string",
        "description": "Optional phone number"
      },
      "slot_start_iso": {
        "type": "string",
        "description": "startIso of the chosen slot, exactly as returned by get_availability"
      },
      "timezone": {
        "type": "string",
        "description": "IANA timezone used when fetching availability"
      }
    },
    "required": [
      "name",
      "email",
      "slot_start_iso",
      "timezone"
    ],
    "additionalProperties": false
  },
  "page": "/"
}
request_callbackAction

Ask the Cuvo team to phone the user back, when live booking is unavailable or the user prefers a callback. Requires the user's consent, name, and phone number.

View tool JSON
{
  "name": "request_callback",
  "kind": "act",
  "impl": "imperative",
  "description": "Ask the Cuvo team to phone the user back, when live booking is unavailable or the user prefers a callback. Requires the user's consent, name, and phone number.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string"
      },
      "phone": {
        "type": "string"
      }
    },
    "required": [
      "name",
      "phone"
    ],
    "additionalProperties": false
  },
  "page": "/"
}