Skip to main content
Glama

add_to_cart

Add another selected product variant to an existing Agent Checkout cart. Use when the user explicitly wants another item or quantity added to an existing cart. This does not charge the buyer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cart_idYes
quantityNo
site_slugYes
variant_idYes

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses a key behavioral fact: 'This does not charge the buyer,' which prevents confusion with checkout/payment tools. However, it does not explain failure behavior, idempotency, or exactly how quantity is applied (incremented vs. set), leaving behavioral transparency incomplete.

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 three short sentences with no filler. Each sentence has a distinct job: state the action, provide the usage trigger, and clarify a critical non-charge behavior. The core purpose is front-loaded, making it easy to scan.

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?

There is no output schema, no annotations, and zero parameter descriptions in the schema. The description does not explain site_slug's role, the default quantity behavior, or what the tool returns. For a mutation tool with required fields and no structured safety hints, the definition is not complete enough for an agent to confidently invoke it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It loosely connects 'product variant' to variant_id and 'existing cart' to cart_id, but it never explains site_slug or how quantity behaves when omitted. The agent is left to infer the meaning of required parameters from context, which is insufficient for a 4-parameter tool.

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 states a specific verb and resource: 'Add another selected product variant to an existing Agent Checkout cart.' It clearly distinguishes this from create_cart and create_checkout by emphasizing 'existing' cart and 'another' item. The additional note that it does not charge the buyer further clarifies the tool's boundary.

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

Usage Guidelines4/5

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

The description provides an explicit usage condition: 'Use when the user explicitly wants another item or quantity added to an existing cart.' It gives clear context for when to invoke the tool, though it does not name alternatives or explicit when-not-to-use conditions beyond what is implied by 'existing cart.'

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

Most tools target distinct steps in the purchase flow, and descriptions clarify the intended sequence. The main overlap is search_catalog being a legacy alias for search_products; check_inventory and get_product have slight overlap but are distinguished by availability checking versus detailed product info.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern such as search_products, get_product, create_cart, add_to_cart, and create_checkout. The naming pattern makes the workflow stage and action immediately clear.

Tool Count5/5

With 8 tools, the surface is well-scoped for a shopping-and-checkout flow: discovery, product details, inventory, cart creation/modification, cart review, and checkout handoff. The redundant search_catalog alias is minor and does not make the set feel bloated.

Completeness4/5

The core path is complete: search → product details → inventory check → create cart → add to cart → get cart → create checkout. Minor gaps such as removing or updating cart items are missing, but the essential purchase workflow is fully supported.

Resources