Skip to main content
Glama
Rubio-Enterprises

grocy-mcp

Shopping List Set Amount Tool

shopping_list_set_amount_tool

Update the quantity of any shopping list item directly. Specify the item ID and new amount to adjust the list without editing other details.

Instructions

Change the quantity for a shopping list item.

A simpler alternative to shopping_list_update_tool when you only need to change the amount.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
amountYesNew quantity.
item_idYesThe shopping list item ID (from shopping_list_view_tool).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.9/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It only states 'change the quantity' – implying mutation – but does not mention side effects, prerequisites (e.g., item must exist), whether the amount is overwritten or adjusted, or any error conditions. This is a significant gap for a mutation tool.

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 short sentences: the first states the operation, the second provides usage guidance. No redundant phrasing, perfectly front-loaded. Every word earns its place.

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?

For a simple 2-parameter tool with an output schema, the description covers the primary purpose and use case adequately. However, because annotations are absent and the tool mutates data, the description should ideally disclose behavioral expectations (e.g., overwrite semantics, required item existence) to fully complete the picture for an agent.

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 coverage is 100%, so the schema already documents both parameters. The description itself adds no extra parameter details beyond what the schema provides, but it does reference the item ID source in the schema. This meets the baseline for full coverage.

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 ('change the quantity') and the resource ('a shopping list item'), which directly distinguishes it from sibling tools like shopping_list_update_tool. The explicit mention of being a simpler alternative reinforces its specific role.

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

Usage Guidelines5/5

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

The description explicitly tells the agent when to use this tool: 'when you only need to change the amount', and names the alternative (shopping_list_update_tool). This gives clear selection criteria without ambiguity.

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

Deploy Server

Other Tools