Skip to main content
Glama

Add shopping item

add_shopping_item

Add an item to the household shopping list with quantity and category. Specify the item name; optionally set amount, aisle, member, or preview before saving.

Instructions

Adds an item to the shopping list with a quantity and category. Needs the item name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qtyNoQuantity as spoken: "1", "2 kg", "3 packs".1
nameYesThe item, e.g. Milk.
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.
categoryNoAisle or group, e.g. Dairy.
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

B3.3/5.0
Behavior3/5

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

Annotations already convey that the tool is mutating (readOnlyHint=false) and not destructive, and the description adds a concrete side effect: adding an item with quantity and category. It does not mention behaviors such as dry_run producing no write or idempotency_key replay semantics, but those are documented in the schema.

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 sentence that leads with the action, gives the resource, and states the key requirement with no filler. It is efficiently front-loaded for an agent to parse.

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

Completeness3/5

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

The description is adequate for a simple add action, and the schema covers six parameters and an output schema. However, the phrasing 'with a quantity and category' could imply these are required when only name is required, and there is no mention of when to prefer this over sibling tools.

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 baseline is 3; the description only restates that the tool uses item name, quantity, and category. It adds no semantic detail beyond the schema, such as formatting, defaults, or the member/idempotency parameters.

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 names a specific action and target ('Adds an item to the shopping list'), which makes the tool's core purpose immediately clear. It does not explicitly differentiate from related siblings like check_off_shopping_item or clear_shopping_list, 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 guidance is given about when to use this tool versus sibling tools, nor are exclusions or alternatives named. The only hint is 'Needs the item name', which is a prerequisite rather than usage context.

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