Skip to main content
Glama

update_carousel

Modify an existing carousel by replacing its title, caption, or slides. New slides replace all existing slides, and you can link or unlink a variant.

Instructions

Update an existing carousel. Any of title, caption, or slides can be replaced. If slides are provided, they REPLACE the existing slides entirely (not merged). Each new slide gets a fresh auto-generated id unless one is explicitly passed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesCarousel id to update
titleNoNew title
slidesNoNew slides array (replaces existing slides entirely)
captionNoNew caption (pass empty string to clear)
variant_idNoLink (or re-link) this carousel to a variant. Pass null to unlink. 1:1 constraint.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/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 behavioral burden, and it does disclose two meaningful traits: slides REPLACE rather than merge, and new slides get auto-generated ids unless one is passed. However, it omits permissions, reversibility, error behavior, and what happens to fields not supplied.

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?

Three tight sentences, front-loaded with the core action, then the replacement rule and the id behavior. Every sentence adds information and there is no filler.

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 mutation tool with no annotations and no output schema, the description covers the critical replace semantics and id generation well, and the schema is fully documented. It would be stronger with permission or error context, but nothing essential to calling it correctly is missing.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3, but the description adds semantics the schema does not: the destructive replace-not-merge behavior of the slides array and the auto-generated id rule for each slide. It says nothing about variant_id, which is left entirely to the schema.

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?

States a specific verb and resource ('Update an existing carousel') and enumerates the mutable fields (title, caption, slides). It does not explicitly contrast itself with create_carousel or get_carousel, but the name plus the field list make the operation unambiguous.

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?

There is no when-to-use vs when-not-to-use guidance, no prerequisites, and no pointer to siblings like create_carousel for new decks or list_carousels for discovery. Usage is only implied by 'existing carousel'.

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