Skip to main content
Glama
AbbottDevelopments

Shopmonkey MCP Server

update_canned_service_part

Update a part line item within a canned service template by specifying the item ID and new details such as name, quantity, pricing, notes, or tax status.

Instructions

Update a part line item on a canned service template.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoUpdated part name
noteNoAdditional notes
notesNoAdditional notes
itemIdYesThe part line item ID to update
taxableNoWhether this part line is taxable
quantityNoUpdated quantity
partNumberNoVendor part number
cannedServiceIdYesThe canned service ID
retailCostCentsNoUpdated customer price, per unit, in integer cents
wholesaleCostCentsNoUpdated vendor cost, per unit, in integer cents

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.1.1

TDQS

B3.4/5.0
Behavior2/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 for behavioral transparency. It only says 'Update', which indicates mutation, but it gives no details about side effects, permissions, idempotency, or return values.

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?

The description is a single concise sentence that directly states the operation and resource. There is no redundant or extraneous information.

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

Completeness2/5

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

The description is minimal and does not explain partial-update semantics, expected return value, or how this tool relates to add/remove operations. While all parameters are described in the schema, the lack of output schema and behavioral context leaves the tool incomplete for an agent to use confidently.

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%, with each parameter having a clear description such as 'Updated customer price, per unit, in integer cents'. The tool description itself adds no extra parameter meaning, so the baseline score 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?

The description clearly states the action 'Update' and the target resource 'a part line item on a canned service template'. It also distinguishes this tool from sibling tools like add_canned_service_part and remove_canned_service_part.

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 verb 'Update' implies this tool is for modifying an existing part line item rather than adding or removing one, but the description does not explicitly mention when to choose this tool over its add/remove siblings. Usage guidance is only implied, not stated.

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