Skip to main content
Glama
RanchBot

Ranch.Bot MCP Server

Official
by RanchBot

create_chute_session

Creates a proposed chute session from a work description, building a widget grid for weights, scores, treatments, and photos. The draft is reviewed and confirmed at the chute before data is recorded.

Instructions

Propose a chute-mode work session from a description of the day's work. Creates a PROPOSED session only — the user reviews, edits, and starts it at the chute (the in-app confirmation); proposing never records any data by itself. Build the widget grid from these types: weight (scale readout; options.unit), score (tap row; options.min/max, BCS defaults 1–5), select (tap chips; options.choices), boolean (yes/no tap, e.g. "Feet trimmed" for work done only if needed), number (options.unit), treatment (product checklist; options.presets), text (notes/dictation), photo. Arrangement rules (hipster/design chute_widget_grid): weight first with size "full"; tap-only widgets (score, select, boolean) size "half", grouped after weight; number/treatment next; text and photo last with size "full"; keep it to ~6 widgets or fewer. EID scanning is the identify step of every session — never add a widget for it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoSession name, e.g. "Weigh Day". Defaults to "Chute — <today>".
farm_idNoThe ID of the farm (optional if a default is set).
widgetsYesThe widget grid, in display order.
group_nameNoGroup the processed animals join; created if it does not exist.
record_typeNoRecordType for the per-animal pass records (e.g. HEALTH for vaccination).
new_animal_fieldsNoIdentity fields on the new-animal form (tag, name, sex, color, dob).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations only say readOnlyHint=false and destructiveHint=false. The description goes well beyond that by disclosing the propose-then-review-then-start lifecycle, the no-data-recorded side effect, widget arrangement constraints, and the EID-scanning reminder. This is exactly the kind of behavioral context that annotations lack.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence carries content, and the purpose is front-loaded. It is somewhat dense as one paragraph with several rules (widget types, sizes, order, cap), so it could be tightened or bulleted, but nothing is 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 complex widget-builder tool with no output schema and only two annotations, this description is unusually complete on input construction and lifecycle. It does not describe the API response after proposing or explicitly cover optional parameters, but those are documented in the schema and the flow is implied, leaving only minor gaps.

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 covers all six parameters, so baseline is 3. The description adds substantial meaning for widgets: each type's UI behavior, options fields, size rules, ordering, and ~6-widget cap. It adds less for name, farm_id, group_name, record_type, and new_animal_fields, which rely on the schema, so a 4 rather than 5.

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?

Opens with a specific action and object — 'Propose a chute-mode work session' — and immediately clarifies that it creates only a PROPOSED session, distinguishing it from record-writing tools and update/list chute-session tools in the sibling set.

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 establishes clear use context ('from a description of the day's work') and an important boundary ('proposing never records any data by itself'), implying this is not create_record or update_chute_session. It does not explicitly name an alternative or state when not to use this tool, so it stops short of a 5.

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