Skip to main content
Glama
RanchBot

Ranch.Bot MCP Server

Official
by RanchBot

list_rations

Read-only

Retrieve feed rations for a farm, showing named recipes with per-head-per-day amounts, ingredients, and group assignments. Use pagination and filters to view active or retired rations.

Instructions

List feed rations on the farm: named recipes in per-head-per-day amounts, with their ingredients and group assignments.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
skipNoRecords to skip (pagination).
takeNoMax records to return.
farm_idNoThe ID of the farm (optional if a default is set).
include_inactiveNoInclude retired rations.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already mark it read-only, and no annotation contradiction exists. The description adds useful scope ('on the farm') and content expectations (ingredients, group assignments), but it does not disclose additional behavioral traits like default active-only filtering or pagination behavior beyond what the schema parameters imply.

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?

A single, front-loaded sentence with no filler: it names the operation, the scope, and the content of the returned items. Every clause adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only list tool with no output schema and all-optional parameters, the description supplies the essential mental model: what a ration is and what the list will contain. The schema covers pagination and active/inactive controls, so nothing critical is missing.

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?

Input schema coverage is 100% with individual property descriptions, so the schema already carries parameter meaning. The description adds no parameter-level semantics (e.g., how skip/take or include_inactive work), which is acceptable at baseline.

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?

States a specific verb and resource ('List feed rations') and enriches it with a precise definition: named recipes in per-head-per-day amounts with ingredients and group assignments. This clearly differentiates it from siblings like list_feedings, get_ration, and list_groups.

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 the tool is for farm-level ration definitions rather than actual feeding events, but it does not explicitly compare with alternatives such as get_ration or list_feedings, nor does it state when not to use it. Context is present; exclusions and alternate routing are absent.

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