# com.bestremotetools/quote-vat-accept-to-invoice (mcpb · quotes.mcpb)

Send a priced, VAT-correct quote from chat, then turn the yes into an invoice with one call.

- Trust score: 53/100 (low)
- Change this week: +6
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- mcpb · `quotes.mcpb`: 53/100 (this document), [markdown](https://verifymcp.io/servers/com-bestremotetools-quote-vat-accept-to-invoice/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-quotes-mcp.md), [page](https://verifymcp.io/servers/com-bestremotetools-quote-vat-accept-to-invoice/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-quotes-mcp)

## Channel facts

- Registry: `mcpb`
- Package: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/quotes.mcpb`
- Version: `0.21.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-21.

- **Supply Chain Security**: 22/100
  - Malware scan not yet available for this package.
  - Known CVEs were checked across the 157 of 157 dependencies we could resolve, so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - 63 of 157 dependencies flagged as unhealthy (2 deprecated).
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 14 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 87/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1363 tokens (~104/item across 13 items; 12 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 40/100
  - Stability observed for 12 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 96/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 87% of tool parameters carry a description.
- **Tool Safety**: 75/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - 0 of 2 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "quote_send_text" implies "send" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 13 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

- Download bundle: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/quotes.mcpb`

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-20 (score 53, +1)

No change was recorded against any check on this day. Stability & Change Management went from 33 to 37. That category is still filling its 30-day observation window: 10 days of observed history at the previous scan, 11 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-18 (score 52, +1)

No change was recorded against any check on this day. Stability & Change Management went from 27 to 30. That category is still filling its 30-day observation window: 8 days of observed history at the previous scan, 9 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-17 (score 51, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-09 (score 47)

First indexed and scored.

## MCP tools (12)

### `quote_create` (~295 tokens)

Create a quote

Quote a client: line items with quantity and unit price in minor units, VAT per line or the business default, an optional discount and a validity window. Returns the quote id and the totals.

Input parameters:

- `client` (string, required): Client name or id. A name the invoice server already knows brings its address, email and VAT id onto the quote
- `client_address` (string): Postal address for the QUOTE FOR block, newlines allowed
- `client_email` (string): Only if the user gave it; otherwise the stored client's email is used
- `client_vat_id` (string): Client VAT / tax registration id
- `currency` (string): Defaults to your business default currency
- `discount_percent` (number): Discount applied to every line, in percent
- `issue_date` (string): YYYY-MM-DD, defaults to today in your business profile's timezone
- `items` (array, required): The line items being quoted
- `notes` (string): Free text printed under the totals, e.g. scope or exclusions. 10000 characters or fewer
- `tax_rate` (number): VAT percent for lines with no rate of their own. Defaults to the business default
- `valid_until` (string): YYYY-MM-DD, an explicit last valid day. Wins over validity_days
- `validity_days` (integer): Days the quote stays valid, counted from the quote date and inclusive. Default 30

### `quote_list` (~112 tokens)

List quotes

Every quote with its client, total, validity and state (open, expired, accepted or declined). Filter by state, by client or by quote date range.

Input parameters:

- `client` (string): Only quotes for clients whose name contains this text
- `from` (string): YYYY-MM-DD, earliest quote date
- `state` (string): Default "all". "open" excludes quotes whose validity has run out; "expired" is only those
- `to` (string): YYYY-MM-DD, latest quote date

### `quote_get` (~70 tokens)

Show one quote

The full stored record for one quote: every line with its unit price and VAT, the totals, the validity date, the notes and, when it was accepted, the invoice it became.

Input parameters:

- `id` (string, required): Quote id such as Q-2026-0001, or an exact client name

### `quote_update` (~184 tokens)

Change an open quote

Revise a quote that is still open: line items, currency, discount, VAT default, validity or notes. Totals are recomputed. An accepted or declined quote is never edited.

Input parameters:

- `client_address` (string)
- `client_email` (string)
- `client_vat_id` (string)
- `currency` (string)
- `discount_percent` (number)
- `id` (string, required): Quote id such as Q-2026-0001
- `items` (array): Replaces every line item
- `notes` (string)
- `tax_rate` (number): VAT percent for lines with no rate of their own
- `valid_until` (string): YYYY-MM-DD. Wins over validity_days, and is how an expired quote is extended
- `validity_days` (integer): Recomputes valid_until from the quote date

### `quote_send_text` (~100 tokens)

Plain-text quote to paste into email

Turn a quote into a plain-text summary with the line table, the VAT lines, the total and the validity date, ready to paste into an email. Free on every tier.

Input parameters:

- `greeting` (string): Opening line, default "Hello" plus the client name
- `id` (string, required): Quote id such as Q-2026-0001
- `sign_off` (string): Closing line, default your business name from the shared profile

### `quote_accept` (~173 tokens)

Accept a quote

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. The numbers are copied, never recomputed.

Input parameters:

- `allow_expired` (boolean): Accept a quote whose validity has run out. Default false: an expired quote is refused so the price is re-confirmed first
- `create_invoice` (string): Default "auto": create the invoice when the invoice store exists, otherwise hand back the items. "never" only marks it accepted
- `due_days` (integer): Days until the invoice is due, defaults to your payment terms
- `id` (string, required): Quote id such as Q-2026-0001
- `issue_date` (string): YYYY-MM-DD for the invoice, defaults to today

### `quote_decline` (~105 tokens)

Decline a quote

Mark a quote as lost, with an optional reason, so it stops counting against the open quotes and shows up in the win rate. An accepted quote is never turned back.

Input parameters:

- `date` (string): YYYY-MM-DD, defaults to today
- `id` (string, required): Quote id such as Q-2026-0001
- `reason` (string): Why it was lost, e.g. "price" or "went in-house". Kept on the record

### `quote_delete` (~72 tokens)

Delete a draft quote

Delete a draft quote that was never sent, accepted, invoiced or exported, and give its free open-quote slot back. A quote with any of those is refused with the dependent named. The id is never reissued.

Input parameters:

- `id` (string, required): Quote id such as Q-2026-0001

### `quote_pdf` (~84 tokens)

Render the quote as a PDF

Call this tool to write the A4 PDF of one quote and return the file path. Same layout as the invoice PDF, with the validity date and an acceptance block. Pro.

Input parameters:

- `id` (string, required): Quote id such as Q-2026-0001
- `out_path` (string): Where to write the file. Defaults to the quotes data directory under pdf/

### `quote_report` (~82 tokens)

Quote pipeline and win rate

Totals per currency for open, accepted, declined and expired quotes, with counts, the value still open and the win rate. Free covers the current calendar year to date; Pro reports over any date range.

Input parameters:

- `from` (string): YYYY-MM-DD, earliest quote date to count
- `to` (string): YYYY-MM-DD, latest quote date to count

### `license_status` (~23 tokens)

License status

Show whether this server runs in free or Pro mode and where to upgrade.

### `license_activate` (~42 tokens)

Activate license

Activate a Pro license key (format MCPL1.xxx.yyy). Verified offline and saved locally.

Input parameters:

- `key` (string, required): License key from the checkout confirmation page

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/com-bestremotetools-quote-vat-accept-to-invoice/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-quotes-mcp#diagnostics

## Score history

- 2026-09-21: 53
- 2026-09-20: 53
- 2026-09-19: 52
- 2026-09-18: 52
- 2026-09-17: 51
- 2026-09-16: 47
- 2026-09-15: 47
- 2026-09-14: 47
- 2026-09-13: 47
- 2026-09-12: 47
- 2026-09-11: 47
- 2026-09-10: 47
- 2026-09-09: 47

## Common questions

### What is the com.bestremotetools/quote-vat-accept-to-invoice MCP server?

com.bestremotetools/quote-vat-accept-to-invoice is an MCP server listed in the public MCP registry as com.bestremotetools/quote-vat-accept-to-invoice. Send a priced, VAT-correct quote from chat, then turn the yes into an invoice with one call. This page covers its MCPB bundle (https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/quotes.mcpb).

### Is the com.bestremotetools/quote-vat-accept-to-invoice MCP server safe to use?

com.bestremotetools/quote-vat-accept-to-invoice scores 53 out of 100 on VerifyMCP. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the com.bestremotetools/quote-vat-accept-to-invoice MCP server expose?

com.bestremotetools/quote-vat-accept-to-invoice exposes 12 tools: quote_create, quote_list, quote_get, quote_update, quote_send_text, and 7 more. Their descriptions and schemas cost roughly 1,342 tokens of context every time the server is loaded.

### What licence is the com.bestremotetools/quote-vat-accept-to-invoice MCP server under?

com.bestremotetools/quote-vat-accept-to-invoice declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- Repository: https://github.com/theluckystrike/mcp-servers
- Website: https://mcp.zovo.one/s/quotes
- Changelog RSS feed: https://verifymcp.io/servers/com-bestremotetools-quote-vat-accept-to-invoice/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-quotes-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-bestremotetools-quote-vat-accept-to-invoice/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-quotes-mcp.json
- HTML version of this page: https://verifymcp.io/servers/com-bestremotetools-quote-vat-accept-to-invoice/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-quotes-mcp
