Skip to main content
Glama
AbbottDevelopments

Shopmonkey MCP Server

add_canned_service_fee

Add a fee line item to an existing canned service template by specifying the service ID and optional fee details like name, quantity, and unit cost.

Instructions

Add a fee line item to an existing canned service template.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoFee name
notesNoAdditional notes
quantityNoQuantity
descriptionNoFee description
unitCostCentsNoUnit cost in integer cents
unitPriceCentsNoUnit price in integer cents
cannedServiceIdYesThe canned service ID to add the fee to
taxableValueTypeNoTaxable value type

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.1.1

TDQS

A3.6/5.0
Behavior2/5

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

With no annotations, the description provides minimal behavioral information, only stating the action without disclosing side effects, permissions, or idempotency.

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, clear sentence with no extraneous information, front-loading the key action.

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 simple mutation with no output schema, the description is adequate to understand the tool's purpose, though it could optionally mention success/failure behavior.

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?

The schema descriptions fully cover all parameters, and the tool description adds no further meaning, so 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?

The description clearly states the verb 'Add', the object 'fee line item', and the context 'to an existing canned service template', distinguishing it from sibling tools.

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 description implies usage by naming the action, but does not explicitly mention when to use it over alternatives like add_canned_service_labor or add_canned_service_part.

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