get_current_context
Retrieve the current context to obtain the default farm ID for your operations.
Instructions
Get the current context including default farm ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve the current context to obtain the default farm ID for your operations.
Get the current context including default farm ID
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden; 'Get' clearly signals a read operation with no destructive intent, and the mention of 'including default farm ID' hints at the returned data. It does not disclose other behavioral details such as auth requirements or what else 'current context' contains, but for a zero-parameter getter the core safety profile is apparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word contributes to identifying what the tool does.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, no-output-schema tool, the description is mostly adequate but leaves 'current context' undefined and does not enumerate the return fields besides default farm ID. An agent can call it correctly, but may not know precisely what to expect in the response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has no parameters, so there is nothing for the description to add; the baseline of 4 applies. The description's mention of default farm ID gives a hint about output rather than input.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and a distinct resource ('current context'), and even names one contained field ('default farm ID'). It does not explicitly distinguish from sibling tools like get_farm or list_my_farms, but the scope is clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is the tool for reading the active context and default farm ID, but it does not state when to prefer it over get_farm, list_my_farms, or set_default_farm. No exclusions or alternative conditions are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.