Skip to main content
Glama

money4k-split-bill

Update Bill

update_bill
Idempotent

Updates an existing bill.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
infoYesAdditional bill information
itemsYesBill items
titleYesBill title
bill_idYesBill ID to update
total_priceYesBill total price, VAT and Taxes are included in this price

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesBill ID
infoYesAdditional bill information
itemsYesBill items with selections
titleYesBill title
owner_idYesBill owner user ID
share_urlYesBill share URL
created_atYesCreation time in RFC3339 UTC
updated_atYesUpdate time in RFC3339 UTC

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already indicate it's not read-only, not destructive, and idempotent. The description merely says 'updates' without elaborating on permissions, side effects, or constraints (e.g., whether missing fields are reset). No contradiction with annotations, but the description adds no behavioral context beyond the obvious.

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 a single concise sentence with no fluff. It conveys the essential action efficiently. However, it could include a brief mention of typical use without significantly increasing length.

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?

Given the complexity (5 parameters, nested objects) and the presence of an output schema, the description is too minimal. It does not explain the update semantics (e.g., full replacement vs partial update), nor does it address prerequisites or output expectations. The output schema may cover return values, but the description should at least hint at the scope of the update.

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 100%: all 5 parameters have detailed descriptions in the input schema. The tool description adds no extra meaning beyond what's already documented structurally, so a baseline score of 3 is appropriate.

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 clearly states the verb 'updates' and the resource 'existing bill', effectively communicating the tool's primary action. It distinguishes from sibling tools like create_bill (create new) and set_bill_selections_batch (batch operations on selections). However, it could be more specific about which bill attributes are modifiable, as implied by the input schema.

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?

The description provides no guidance on when to use this tool versus its siblings. It does not specify prerequisites (e.g., bill must exist) or alternative tools for different scenarios. The sibling list includes create_bill and set_bill_selections_batch, but no explanation of trade-offs is given.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.2/5.0
Disambiguation5/5

The three tools target distinct actions: creating a bill, updating a bill, and batch-setting selections. There is no overlap in purpose.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (e.g., create_bill, update_bill, set_bill_selections_batch), with clear and predictable naming.

Tool Count2/5

With only 3 tools, the server feels bare for a bill-splitting domain. Operations like viewing, deleting, or finalizing bills are missing, making the tool count insufficient for a typical workflow.

Completeness1/5

The surface is severely incomplete: there are no tools to read (get/list) bills, delete bills, or settle splits. Agents cannot perform basic retrieval or complete the lifecycle of a bill.

Resources