Skip to main content
Glama

Mark bill paid

mark_bill_paid
Idempotent

Mark a bill as paid using its name or id, and automatically generate the next occurrence for recurring bills.

Instructions

Marks a bill as paid and, if it recurs, creates the next one. Needs the bill name or id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
billYesThe bill's name or id.
memberNoWho is asking, if known: a member id or name. Used for per-member policies and the audit trail.
dry_runNoWhen true, return the preview only. Nothing is written and nothing is queued.
paid_atNoWhen it was paid; defaults to now.
idempotency_keyNoOptional client-chosen key. Repeating a call with the same key returns the original outcome instead of acting twice.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already convey readOnlyHint=false and idempotentHint=true, so the safety profile is known. The description adds meaningful side-effect context beyond the annotations: marking the bill paid also creates the next bill if it recurs. This is important behavior an agent would not otherwise know from the schema or annotations.

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 two short sentences with the main action and side effect front-loaded. The second sentence ('Needs the bill name or id') is somewhat redundant with the schema's required parameter, but it is concise and helps the agent understand the primary input without opening the schema.

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?

Given a 100%-covered input schema, an output schema, and annotations covering idempotency, the description is nearly complete. It adds the one non-obvious behavior (recurrence creation) that the structure does not already expose. It doesn't cover every edge case, but nothing critical is missing for a correct 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 100%, so the parameter descriptions already handle semantics fully. The description barely adds parameter-specific meaning beyond echoing that the bill can be identified by name or id, which is already documented in the schema. Baseline 3 applies.

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 states a specific verb and resource: it marks a bill as paid and handles recurrence by creating the next bill. This distinguishes it from siblings like add_bill, update_bill, or get_bill, so an agent can tell when this tool is the right one.

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 intended use is implied by the action ('mark a bill as paid'), and the description mentions the required input ('bill name or id'). However, it does not explicitly address when to prefer this over update_bill or other bill-related siblings, nor does it state 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.