Skip to main content
Glama
RanchBot

Ranch.Bot MCP Server

Official
by RanchBot

update_chute_session

Update a proposed chute session before it starts: rename it or replace its entire widget grid to match your workflow. For started sessions, only the operator can make changes in the app.

Instructions

Revise a PROPOSED chute session before the user starts it: rename it or replace its widget grid (full replacement list, same widget types and arrangement rules as create_chute_session). Sessions that have been started at the chute cannot be changed from here — only the operator can edit those in the app.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew session name.
farm_idNoThe ID of the farm (optional if a default is set).
widgetsNoFull replacement widget list, in display order.
group_nameNoGroup the processed animals join; created if it does not exist.
session_idYesThe PROPOSED chute session UUID.
record_typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.8/5.0
Behavior5/5

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

It discloses an important behavioral trait: the widget grid is a full replacement list, not an incremental edit. It also clarifies the state constraint that only PROPOSED sessions are editable, which goes beyond the minimal readOnlyHint=false and destructiveHint=false annotations. This gives the agent meaningful behavior information for invoking the tool safely.

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 two sentences with no wasted words. It front-loads the action and state constraint, then adds the crucial replacement semantics and exclusion. Every clause contributes useful information.

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 6-parameter mutation with no output schema, the description covers the core operation, the session-state restriction, and the full-replacement semantics. It could be slightly more explicit about what happens when optional fields like group_name or record_type are provided, but the schema covers those parameters, so the gap is minor.

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 description coverage is 83%, so the baseline is 3. The description adds value by mapping the tool's purpose to the name and widgets parameters ('rename it or replace its widget grid') and pointing to create_chute_session for widget types and arrangement rules. It doesn't elaborate on farm_id, group_name, or record_type, but the schema already documents those.

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 precise action and resource: 'Revise a PROPOSED chute session before the user starts it,' with concrete operations (rename or replace the widget grid). It also contrasts with create_chute_session by referencing the same widget rules, making it easy to distinguish from creation/list/get siblings.

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?

It explicitly says when to use the tool: before the user starts the session. It also explicitly says when not to use it: started sessions cannot be changed here, and only the operator can edit those in the app. This provides clear routing guidance relative to create_chute_session and app-side editing.

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