version
Return FreeCAD and bundled Python release numbers from the worker to verify runtime compatibility.
Instructions
Return FreeCAD and bundled Python versions from the worker.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Return FreeCAD and bundled Python release numbers from the worker to verify runtime compatibility.
Return FreeCAD and bundled Python versions from the worker.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. 'Return' implies a read-only, non-destructive query, but the description does not discuss permissions, side effects, or rate limits. For such a simple diagnostic tool this is adequate but not rich.
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?
A single front-loaded sentence with no wasted words. It states exactly what the tool returns and from where.
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 diagnostic tool with no output schema, the description names the exact return values (FreeCAD and bundled Python versions). Nothing further is required for an agent to call it correctly.
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 tool has zero parameters, so the baseline score is 4. The description adds no parameter detail because none exist.
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 states a specific verb, 'Return', and a precise resource, 'FreeCAD and bundled Python versions from the worker'. It is unambiguous and cannot be confused with any sibling tool such as ping or restart_worker.
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?
Usage is implicitly clear: call this to inspect the worker environment. However, it does not explicitly say when to use it instead of ping, setup_status, or other diagnostic tools, nor does it state any conditions or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.