All servers · Buy Pro $19 · Source · Claude Desktop bundle (.mcpb)
Say "quote Acme for 12 hours at 90 EUR plus a 300 EUR setup, 23% VAT, good for 14 days" and get a numbered quote you can send today: the line table with VAT per rate, the total in integer minor units, a validity date computed in your own timezone, a plain-text version to paste straight into an email and, on Pro, the same A4 PDF layout your invoices use. When the client says yes, quote_accept turns it into a real invoice in the mcp-invoice store, under the same client list and the same number series, with the numbers copied from the quote rather than recomputed. Everything is stored in plain JSON files on your own machine; nothing is uploaded anywhere.

Send a priced, VAT-correct quote from chat, and turn the yes into an invoice with one call.
npm publish for @theluckystrike/mcp-quotes is pending. Until then, the .mcpb one-click bundle or a
clone+build is the working path.
One-click (.mcpb): download quotes.mcpb from the latest release and double-click it in Claude Desktop:
https://github.com/theluckystrike/mcp-servers/releases/latest
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"quotes": {
"command": "npx",
"args": ["-y", "@theluckystrike/mcp-quotes"]
}
}
}
Claude Code:
claude mcp add quotes -- npx -y @theluckystrike/mcp-quotes
Cursor (.cursor/mcp.json): the same entry as Claude Desktop.
From source:
git clone https://github.com/theluckystrike/mcp-servers.git && cd mcp-servers
npm install
npm run build -w packages/mcp-license -w servers/invoice -w servers/quotes
Build servers/invoice first: the money, VAT, client and numbering engine is imported from it. Then point
your client's command at node with one arg, the absolute path to servers/quotes/dist/index.js.
To run in Pro mode set MCP_LICENSE_KEY in the same config block, or call license_activate once with your key.
| Tool | What it does |
|---|---|
quote_create |
Quote a client: line items with quantity and unit price in minor units, VAT per line or the business default, an optional discount, a validity window. Allocates Q-YYYY-NNNN |
quote_list |
Every quote with client, total, validity and state: open, expired, accepted or declined. Filter by state, client or quote date |
quote_get |
The full stored record for one quote, including the invoice it became |
quote_update |
Revise a quote that is still open. Totals are recomputed; an accepted or declined quote is never edited |
quote_send_text |
A plain-text quote with the aligned line table, VAT lines, total and validity date, ready to paste into an email. Free |
quote_accept |
Mark it accepted and turn it into an invoice: created directly in the invoice server when its store is present, otherwise handed back as invoice_create-ready items |
quote_decline |
Mark it lost, with a reason, so it stops counting against the open quotes and lands in the win rate |
quote_pdf |
Render the A4 PDF and return the path. Pro |
quote_report |
Open, accepted, declined and expired totals per currency, the value still open and the win rate. Free for the current calendar year to date |
license_status |
Show free or Pro mode |
license_activate |
Activate a Pro key (verified offline) |
Resource: quotes://open returns every quote still inside its validity window as JSON.
Prompt: quote_followup reviews what is open, what lapses soon and what already lapsed, then drafts the chase.
| You say | Tool |
|---|---|
| "Quote Acme for 12 hours at 90 EUR plus a 300 EUR setup, 23% VAT, good for 14 days." | quote_create |
| "Write that up as an email I can send." | quote_send_text |
| "Make Q-2026-0003 20 hours instead and give them another two weeks." | quote_update |
| "Acme said yes. Invoice it." | quote_accept |
| "Beta went with someone cheaper." | quote_decline |
| "What is still open, and what is my win rate?" | quote_report |
| "Which quotes have lapsed with no answer?" | quote_list with state: "expired" |
You: Quote Acme for 12 hours of API work at 90 EUR plus a 300 EUR setup fee,
23% VAT, good for 14 days.
quote_create {
client: "Acme", currency: "EUR", validity_days: 14,
items: [
{ description: "API work", quantity: 12, unit_price_minor: 9000, tax_rate: 23 },
{ description: "Setup fee", quantity: 1, unit_price_minor: 30000, tax_rate: 23 }
]
}
-> Q-2026-0001, valid until 2026-09-18
Assistant:
API work 12 x EUR 90.00 = EUR 1080.00
Setup fee 1 x EUR 300.00 = EUR 300.00
Subtotal EUR 1380.00
VAT 23% on EUR 1380.00 EUR 317.40
TOTAL EUR 1697.40
Valid until 2026-09-18.
You: They said yes.
quote_accept { id: "Q-2026-0001" }
-> accepted, invoice INV-2026-0004, due 2026-09-18, total EUR 1697.40
Prices go in as minor units: 9000 is EUR 90.00 and 150000 is JPY 150,000. There is no decimal
anywhere on the input side, so a price can never be entered ten times too small.
| Free | Pro | |
|---|---|---|
| Open quotes | 5 at a time | Unlimited |
quote_send_text (email-ready text) |
Yes, unlimited | Yes, unlimited |
| Accept, decline, revise, VAT, discounts, multi-currency | Yes | Yes |
quote_pdf |
No | Yes |
quote_report (pipeline and win rate) |
Current calendar year to date | Any date range |
| PDF branding | n/a | No footer credit, and your logo |
The cap counts quotes that are still OPEN. Accepting, declining or letting one lapse frees the slot, so a freelancer who closes their quotes never hits it.
Pro is a one-time $19, or $39 for every server in the collection, lifetime.
Get Pro: https://mcp.zovo.one/buy/quotes
quote_accept writes the invoice from the quote's stored lines. The obvious alternative -- recompute the
totals from the prices at acceptance time -- was measured and rejected, because the VAT rate it would use is
the one in the shared business profile today, not the one the client was quoted.
Measured (test/adversarial.test.mjs, "a VAT rate change between quote and acceptance never moves the
agreed total"): a quote of EUR 1,000.00 net is issued with the profile's default rate of 23%, so the client
is given EUR 1,230.00. The profile's default_tax_rate is then changed to 8% -- a rate change, a new
client class, a corrected setting -- before the client answers. Recomputing at acceptance invoices
EUR 1,080.00: EUR 150.00 below the document they agreed to, on one quote, with nothing on either record
saying why they differ. Copying the stored lines invoices EUR 1,230.00 and the assertion holds
tax_lines[0].rate === 23.
The same rule is why the quote takes prices in minor units and refuses a decimal: the number on the quote and the number on the invoice are the same integer, all the way through.
Quote ids are Q-YYYY-NNNN. The counter is per year and is written before the quote is stored, so a crash
burns an id rather than reusing one, and existing ids are scanned as well, so a restored quotes.json can
never hand back an id that is already on a document a client has seen. The year is part of the id
deliberately: a bare Q-0001 reset every January collides with last January's quote.
Money is integer minor units end to end, and how many make one unit comes from the ISO 4217 table in
mcp-invoice -- 2 for most currencies, 0 for JPY, KRW, ISK and the rest, 3 for KWD and the
Gulf dinars, 4 for CLF and UYW. There is no second copy of that table, of the VAT arithmetic or of the money
formatter here: computeTotals, currencyDecimals and formatMoney are imported from
@theluckystrike/mcp-invoice/lib, so a quote and the invoice it becomes round identically, per line and
then summed. One quote is one currency; a mix across lines is refused rather than added up under whichever
heading came first.
Dates are ISO YYYY-MM-DD. "Today", and therefore whether a quote has expired, is computed in the
timezone of the shared business profile when one is set, not in the host machine's zone: a quote issued at
00:30 in Warsaw from a laptop still on US time would otherwise be dated the previous day and lapse a day
early.
Quotes and the id counter live under ${XDG_DATA_HOME:-~/.local/share}/mcp-servers/quotes/ as
quotes.json and counter.json, plus a pdf/ subfolder for rendered files. Invoices created by
quote_accept are written into the invoice server's directory, .../mcp-servers/invoice/, so
invoice_list there shows them and they share one number series and one client list.
Every mutating call runs under an advisory lock directory at .../quotes/.lock; anything that writes an
invoice also takes .../invoice/.lock, always in that order (quotes, then invoice), the same order
servers/recurring uses, so two processes cannot deadlock. Saves go to a per-process temporary file and are
renamed into place. Measured: 40 quotes created by two processes against one data directory leave 40 quotes
and 40 unique ids (test/concurrency.test.mjs).
A store file that is not valid JSON is never treated as "no quotes". It is moved aside byte-for-byte as
quotes.json.corrupt-<timestamp>, a .corrupt marker is written beside it, and every later call -- reads
included -- fails with restore a good copy ... then delete the marker until a human resolves it.
quote_accept until you either extend it (quote_update {valid_until}) or
say allow_expired: true. That is deliberate friction: a lapsed price should be re-confirmed.quote_send_text gives you the text and quote_pdf gives you the file; getting it to
the client is up to you.All data stays local: plain JSON files in your own data directory. No account, no API key, no network call of any kind. License keys are verified offline.
Built by theluckystrike. Support: support@zovo.one
Exact config path, entry and caveats: Claude Desktop · Claude Code · Cursor · VS Code · Windsurf · Cline · Claude.ai and Claude Desktop connectors · all clients
MCP Quotes vs SendQuoteNow and estimate-invoice: which MCP server to pick · all comparisons
How to track billable hours inside Claude Code and Cursor · Create an invoice PDF from a chat message with an MCP server · Ask questions about an Excel or CSV file from Cursor or Claude · Watch a product price with Claude and get told when it drops · What the free tier includes and what Pro adds · Log expenses and mileage in Claude, split VAT, rebill to an invoice · Convert currencies in Claude with real ECB rates, no API key · Generate Word proposals and contracts from a chat message · Find a meeting time across time zones without doing the arithmetic · Write a resume and a cover letter from chat, without inventing anything · Bill a retainer on a schedule without a billing SaaS · Assemble a contract from your own clause library, in chat · Connect MCP servers to Claude.ai, Claude Desktop, Cursor and VS Code without installing anything · Merge, split and stamp PDFs from chat, and why some come back as glyph numbers · Read a .ics calendar in Claude: free and busy, conflicts, and billable meetings · Run a kanban board in Claude, with time tracking on the same task · Resize, compress and watermark images from a chat message · Categorize and reconcile a bank CSV export from chat · Send a quote from chat, then turn the yes into an invoice · Put a SEPA payment QR code on an invoice from chat · All guides