Skip to main content
Glama
theluckystrike

mcp-bill-of-sale

List bills of sale

sale_list

List all bills of sale, both drafts and finalized, newest first, with status, date, item, buyer, seller and price. Filter by draft or final status.

Instructions

List every bill of sale, drafts and finalized, newest first: id, status, date, item, buyer, seller and price. Filter to drafts or finalized documents with status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum rows, default 500
statusNoWhich documents to list: all (default), draft, or final

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.21.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does add real behavioral context — default result set includes drafts and finalized, ordering is newest-first, and the returned columns are enumerated — but it says nothing about permissions, pagination beyond the schema's limit, or how large result sets are handled.

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?

Two tight sentences, front-loaded with the core action and scope, with the filter behavior second. No filler or redundancy.

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 a list tool with no output schema, the description compensates well by enumerating the returned fields (id, status, date, item, buyer, seller, price). Only pagination/offset behavior and permission requirements are left unstated.

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 both parameters (limit, status) are already fully documented with an enum and default. The description restates the status filter behavior without adding syntax or semantics beyond the schema, so the baseline of 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?

States a specific verb (List), resource (bills of sale), and scope (drafts and finalized, newest first), plus the returned fields. An agent can distinguish this from sale_get or sale_summary without opening any schema.

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 second sentence implies when the status filter is useful (to narrow to drafts or finalized), but there is no explicit when-to-use guidance relative to siblings like sale_get or sale_summary, and no exclusions stated.

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