INDIVIDUAL MCP TOOL
quote_decline
Mark a quote lost, with a reason kept on the record, freeing a free-tier open slot and counting in the win rate.
LIVE ENDPOINT
https://mcp.zovo.one/mcp/estimate-template
Connect to this endpoint to inspect the live schema for quote_decline 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
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-quotes]
url = "https://mcp.zovo.one/mcp/estimate-template"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mcp-quotes": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/estimate-template"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mcp-quotes
Remote MCP URL: https://mcp.zovo.one/mcp/estimate-template
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-quotes": {
"url": "https://mcp.zovo.one/mcp/estimate-template"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mcp-quotes": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/estimate-template"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mcp-quotes",
"transport": "streamable-http",
"url": "https://mcp.zovo.one/mcp/estimate-template"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
quote_create— Store a quote for client from items and return its Q number, VAT and totals.quote_list— List quotes newest first: id, client, dates, state, days left while open, currency, total and the invoice number once accepted.quote_get— Return one quote in full by Q number or exact client name: lines with unit price and VAT, totals, dates, the state today with days left, notes, and the invoice it became once accepted.quote_update— Revise a quote that is still open: line items, currency, discount, VAT default, validity or notes.quote_send_text— Turn a quote into a plain-text summary to paste into an email: the line table, VAT lines, total and validity date.quote_accept— Mark a quote accepted and turn it into an invoice: created directly in the invoice server when its store is present, otherwise returned as invoice_create-ready line items.quote_delete— Delete a draft quote that was never sent, accepted, invoiced or exported, and give its free open-quote slot back.quote_pdf— Call this tool to render one quote as an A4 print-ready document and return a download link valid for one hour: the invoice layout with the validity date and an acceptance block.