← zovo.one

INDIVIDUAL MCP TOOL

sale_render

Render a bill of sale as a clean printable document: Markdown, a self-contained HTML file ready for print-to-PDF, or both, with signature lines for seller and buyer.

zovo.onenone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.zovo.one/mcp/bill-of-sale

No auth detected

Connect to this endpoint to inspect the live schema for sale_render and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

zovo.one

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.mcp-bill-of-sale]
url = "https://mcp.zovo.one/mcp/bill-of-sale"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "mcp-bill-of-sale": {
      "type": "http",
      "url": "https://mcp.zovo.one/mcp/bill-of-sale"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: mcp-bill-of-sale
Remote MCP URL: https://mcp.zovo.one/mcp/bill-of-sale

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-bill-of-sale": {
      "url": "https://mcp.zovo.one/mcp/bill-of-sale"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "mcp-bill-of-sale": {
      "type": "http",
      "url": "https://mcp.zovo.one/mcp/bill-of-sale"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "mcp-bill-of-sale",
  "transport": "streamable-http",
  "url": "https://mcp.zovo.one/mcp/bill-of-sale"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • sale_create — Record a sale and generate the bill of sale: who sold, who bought, what item (with VIN, serial or IMEI where it has one), the price in minor units and the date.
  • sale_update — Change anything on a bill of sale that is not finalized yet: price, buyer, seller, item details, identifiers, the as-is clause, warranty or notes.
  • sale_finalize — Finalize a bill of sale so it is ready to sign: the document is frozen from this call on, sale_update refuses it, and every later render is the signing copy without the DRAFT watermark.
  • sale_list — List every bill of sale, drafts and finalized, newest first: id, status, date, item, buyer, seller and price.
  • sale_get — Read one bill of sale in full by its BOS number: both parties, the item and its identifiers, price, terms, and whether it is still a draft or the finalized signing copy.
  • sale_delete — Delete a bill of sale by its BOS number.
  • sale_summary — Summarize the book: how many drafts and finalized documents, and the total sold value per currency, drafts separate from finalized.
  • license_status — Report this endpoint's licence state for your token as JSON: the product, the tier free or pro, why it is not Pro, and the checkout URL.