Back to the catalog

co.cuvo/website

Cuvo Health published site content and live discovery-call booking tools for AI agents.

Open source Open in the app JSON README (API)

About

Cuvo Health published site content and live discovery-call booking tools for AI agents.

Details

Kind
MCP servers
Topic
Government & public data
Publisher
co.cuvo
Origin
official
Category
ferramentas
Transport
http
Version
1.0.1
Added
2026-08-29 03:00:51
Updated
2026-08-29 03:00:51
Origin id
co.cuvo/website

README

# cuvo-health

The official CLI for [Cuvo Health](https://cuvo.co), the white label telehealth platform. It scripts the same free, no-auth machine interface that cuvo.co publishes for AI agents: published pricing, platform comparisons, articles, live discovery-call booking, and the site's MCP server.

No API keys, no signup, no build step, zero dependencies. Requires Node 18.17+.

## Install

```sh
npx cuvo-health --help     # one-off
npm install -g cuvo-health # installs the `cuvo` and `cuvo-health` commands
```

## Read commands

```sh
cuvo overview              # site summary, key facts, and FAQ (llms.txt)
cuvo pricing               # published pricing as markdown
cuvo compare               # list every Cuvo-vs-competitor page
cuvo compare cuvo-vs-wheel # print one comparison as markdown
cuvo articles              # list published articles
cuvo articles <slug>       # print one article as markdown
cuvo openapi               # the OpenAPI 3.1 contract for the whole API
cuvo health                # liveness; exit 0 when the deployment is serving
```

Add `--json` to `compare`, `articles`, `availability`, and `health` for raw JSON.

## Booking commands

These contact a real sales team and write to a real calendar. Use real contact details, and only book on behalf of someone who asked you to.

```sh
cuvo availability --timezone America/Chicago
cuvo book --name "Ada Lovelace" --email ada@example.com \
  --slot 2026-08-25T14:00:00-05:00 --timezone America/Chicago
cuvo callback --name "Ada Lovelace" --phone "+1 555 010 0000"
```

## MCP for stdio-only clients

cuvo.co serves MCP over streamable HTTP at `https://cuvo.co/mcp`. If your MCP client only speaks stdio, run the CLI as a local proxy:

```json
{
  "mcpServers": {
    "cuvo": { "command": "npx", "args": ["-y", "cuvo-health", "mcp"] }
  }
}
```

Clients with native HTTP support should connect directly instead, e.g. Claude Code:

```sh
claude mcp add --transport http cuvo https://cuvo.co/mcp
```

## Conventions

Errors from the API are RFC 9457 `application/problem+json`; the CLI prints their `detail` and `hint` fields and honors `Retry-After` messaging on 429s. The full conventions (rate limits, `API-Version` header, deprecation policy) are documented at [cuvo.co/developers](https://cuvo.co/developers) with a markdown mirror at [cuvo.co/developers.md](https://cuvo.co/developers.md).

`--base <url>` (or `CUVO_BASE_URL`) points the CLI at a different deployment; you will not normally need it.

## License

MIT. (c) Medstra Inc., DBA Cuvo Health.

More