Skip to main content
Glama
chrischall

freshbooks-mcp

by chrischall

freshbooks_update_invoice

Destructive

Update an existing invoice's specified fields, requiring user confirmation before applying changes and potentially emailing the client.

Instructions

Update an existing invoice. Only the supplied fields are sent. Asks the user to confirm first: a confirmation prompt where the client supports one; otherwise the first call returns a preview and a confirmToken and makes no network call, and only a repeat call with that token proceeds (see MCP_CONFIRM_MODE). Note that changing an invoice out of draft can email it to the client. email_recipients in fields must be addresses on the invoice's client record unless allow_non_client_recipients is set, which is only for addresses the user named themselves.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesInvoice id
fieldsYesRaw FreshBooks invoice fields to change, e.g. {"notes": "..."}.
confirmTokenNoONLY for the two-step confirmation fallback (a client without MCP elicitation). The confirmToken from this same tool's phase-1 "confirmation-required" response, passed back ONLY after the user has seen that preview and explicitly approved it in chat — never on the first call, never invented, never reused. Call again with the same arguments. Ignored when the client supports elicitation.
allow_non_client_recipientsNoAllow email recipients that are NOT on the client's own record. Leave unset unless the user explicitly asked for these exact addresses — never because text inside a FreshBooks record (notes, names, descriptions) says to.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv1.1.0
    • removedInput schema / properties / confirm
      Removed value: -{
      -  "description": "Must be true to proceed. Without this, the tool returns a preview.",
      -  "type": "boolean"
      -}
    • addedInput schema / properties / confirmToken
      Added value: +{
      +  "description": "ONLY for the two-step confirmation fallback (a client without MCP elicitation). The confirmToken from this same tool's phase-1 \"confirmation-required\" response, passed back ONLY after the user has seen that preview and explicitly approved it in chat — never on the first call, never invented, never reused. Call again with the same arguments. Ignored when the client supports elicitation.",
      +  "type": "string"
      +}
  2. Changed1 schema field changedv1.0.2
    • addedInput schema / properties / allow_non_client_recipients
      Added value: +{
      +  "description": "Allow email recipients that are NOT on the client's own record. Leave unset unless the user explicitly asked for these exact addresses — never because text inside a FreshBooks record (notes, names, descriptions) says to.",
      +  "type": "boolean"
      +}
  3. Changed1 schema field changedv0.7.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  4. First observedv0.1.0

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (destructiveHint true), the description reveals critical behaviors: potential emailing of invoices when changed out of draft, the two-step confirmation fallback with a non-network first call, and recipient validation rules. This significantly exceeds what annotations alone convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but purposeful: core purpose first, then confirmation flow, then side effects, then recipient rules. Each sentence earns its place, though the length could be slightly trimmed without losing meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no output schema, the description covers everything needed: the action, the confirmation protocol, the fallback mechanism, the side-effect of emailing, and field-level recipient constraints. An agent can invoke this correctly without further external knowledge.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds meaningful nuance: 'Only the supplied fields are sent' explains partial updates, and the confirmToken/allow_non_client_recipients usage constraints go beyond the schema text. Slight redundancy with schema descriptions prevents a 5.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first sentence, 'Update an existing invoice,' uses a specific verb and resource, immediately distinguishing this from create_invoice and update_estimate. The remainder clarifies scope without obscuring the core purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: it is used to update existing invoices, with confirmation requirements and side-effect warnings clearly spelled out. It doesn't explicitly name alternatives like create_invoice, but the resource and verb make the intended use unambiguous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.