Skip to main content
Glama

quickbooks_create_bill

DestructiveIdempotent

Create a QuickBooks bill through the governed connector to record vendor expenses, with idempotency and approval support.

Instructions

Quickbooks connector operation create_bill (platform tool quickbooks.create_bill).

Routes only through the exact project/account governed connector authority.

Args: arguments: JSON string of arguments for the connector operation. project_id: Authenticated Project UUID. project_ref: Exact project correlation reference. connector_account_ref: Project-bound connector account alias. idempotency_key: Stable business-action identity. effect: Claimed read or write effect; Spring verifies it. approval_ref: Approved platform task UUID when resuming a write.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
effectNo
argumentsNo{}
project_idNo
project_refNo
approval_refNo
idempotency_keyNo
connector_account_refNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv0.1.1
    • addedInput schema / properties / approval_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Approval Ref"
      +}
    • addedInput schema / properties / connector_account_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Connector Account Ref"
      +}
    • addedInput schema / properties / effect
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Effect"
      +}
    • addedInput schema / properties / idempotency_key
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Idempotency Key"
      +}
    • addedInput schema / properties / project_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Project Id"
      +}
    • addedInput schema / properties / project_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Project Ref"
      +}
  2. First observedv0.1.0

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already carry idempotentHint=true, destructiveHint=true, and readOnlyHint=false, so the description need not re-state safety traits. It adds useful context: the routing preference ('governed connector authority'), the effect field being verified by Spring, and approval_ref being required when resuming a write. But it does not disclose what the mutation does to accounting records or reversibility, leaving the impactful write behavior under-explained.

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

Conciseness3/5

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

The structure is organized and front-loaded with the operation identity, followed by routing constraint and a clean parameter list. But the opening repeats 'QuickBooks connector operation create_bill (platform tool quickbooks.create_bill)' in two forms, and the parameter list largely restates names the schema already exposes since it is the sole documentation source. Reasonably compact, but not maximally efficient.

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

Completeness2/5

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

For a 7-parameter tool with 0% schema description coverage and no enums, the description is incompletely specified. It never explains what fields belong in the `arguments` JSON, how bill creation behaves (draft vs posted, approval flow for write), or what prerequisites must hold. The presence of an output schema is a benefit, but the core invocation payload is the least documented element, leaving agents guessing when constructing the call.

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

Parameters3/5

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

Schema description coverage is 0%, so the description must compensate, and it does give each of the 7 parameters a terse gloss (e.g., 'Stable business-action identity' for idempotency_key, 'Spring verifies it' for effect), which adds real meaning beyond the bare schema titles. However, the critical `arguments` parameter — the actual bill payload — is left as a vague 'JSON string of arguments for the connector operation' with no indication of required bill fields, a significant gap for the tool's core substance.

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

Purpose4/5

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

The description explicitly identifies the operation as the QuickBooks connector `create_bill` (platform tool `quickbooks.create_bill`), giving a clear verb+resource. The QuickBooks namespace distinguishes it from `xero_create_bill`, `clio_create_bill`, `billcom_create_bill`, `myob_create_bill`, and `quickbooks_pay_bill`. However, it never states what a bill is in QuickBooks (a vendor payable) or differentiates against `quickbooks_create_invoice`, so it falls short of a 5.

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

Usage Guidelines2/5

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

No when-to-use information is present. The sentence 'Routes only through the exact project/account governed connector authority' is access constraint guidance, not usage guidance. There is no mention of prerequisites (e.g., vendor exists, connector account configured) or when one should prefer `quickbooks_list_bills`, `quickbooks_pay_bill`, or `quickbooks_create_invoice` instead. Nothing tells the agent how to choose this tool over alternatives.

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

Deploy Server

Other Tools