Skip to main content
Glama

money4k-split-bill

Set Bill Selections Batch

set_bill_selections_batch
Idempotent

Saves current user selections for all bill items in one request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bill_idYesBill ID to update selections for
selectionsYesSelections by item

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

A3.8/5.0
Behavior3/5

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

Annotations already indicate idempotentHint true and destructiveHint false; the description adds that it saves selections in one request but does not disclose other behavioral traits such as overwrite behavior or permissions.

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

Conciseness5/5

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

A single front-loaded sentence that efficiently conveys the tool's purpose with no unnecessary words.

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

Completeness4/5

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

For this simple batch update tool, the description is adequate. The output schema exists, but the description could clarify whether selections are merged or replaced.

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?

With 100% schema coverage, the description adds no additional meaning beyond the schema's parameter descriptions.

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 description clearly states the action (saves) and the target (current user selections for all bill items) in one request, distinguishing it from siblings like create_bill and update_bill.

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

Usage Guidelines3/5

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

The description implies usage for batch saving selections but provides no explicit guidance on when to use this tool vs alternatives, nor when not to use it.

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