Skip to main content
Glama
RanchBot

Ranch.Bot MCP Server

Official
by RanchBot

set_default_farm

Define the farm ID used for all subsequent operations, ensuring records and actions target the intended farm without repeated specification.

Instructions

Set the default farm ID for subsequent operations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
farm_idYesThe ID of the farm to set as default

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of disclosing behavior. It states that a default is set for subsequent operations, but does not mention persistence, overwriting an existing default, permissions required, or side effects beyond the operation itself.

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 a single, direct sentence with no filler. It front-loads the action and clearly states the effect on subsequent operations.

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

Completeness3/5

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

For a one-parameter tool with no output schema, the description is minimally adequate. However, it leaves gaps around how the default is applied, whether it replaces an existing default, and what contexts or operations consume it, which an agent would benefit from knowing.

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?

The schema already fully describes farm_id as 'The ID of the farm to set as default' with 100% coverage. The description adds little beyond the schema, so the baseline of 3 is appropriate.

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 uses a specific verb ('set') with a specific resource ('default farm ID') and explains the purpose ('for subsequent operations'). It clearly distinguishes this tool from sibling list/get tools and conveys its state-changing role.

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 phrase 'for subsequent operations' implies when the tool should be used, but it does not explicitly state prerequisites, exclusions, or alternatives such as retrieving the current default via get_current_context. Usage context is implied rather than explicitly guided.

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