Skip to main content
Glama

job_result

Retrieve the status and outcome of an asynchronous FreeCAD job, returning its result when complete or an error if it failed. Set discard to true to free a finished job's cache.

Instructions

Fetch an async job's outcome. Returns {job_id, kind, status, elapsed_s, result (when done) | error (when failed)}; while running neither is set. discard=True frees a terminal job (and its cache entry) once you have it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes
discardNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries the burden well: it discloses the return shape, states that result/error are unset while the job is running (state-dependent behavior), and warns that discard frees the job and its cache entry once terminal — a genuinely non-obvious side effect. It omits error/not-found handling and any auth notes, keeping it at a strong 4 rather than 5.

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?

Three compact sentences with no filler, and the core purpose is front-loaded before the return-shape and discard details. The inline brace notation for the return object is dense but readable.

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?

There is no output schema, so the description correctly spells out the returned fields and their conditional presence. Combined with the discard semantics, an agent has enough to call it correctly; missing only invalid-job_id or failure-mode guidance.

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?

Schema description coverage is 0%, so the description must compensate. It does well for discard (frees terminal job and cache entry), but job_id is left entirely to the name and required list. Half the parameters are effectively explained, which fits the 'minimum viable' band.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource: fetch an async job's outcome. An agent can tell this apart from submission tools like async_demo_submit or render_photoreal_submit. It does not explicitly differentiate from sibling job_status or job_list, which is the main gap.

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?

Gives concrete guidance for the discard parameter (frees a terminal job once you have it), but says nothing about when to prefer this over job_status or job_list, nor prerequisites such as holding a valid job_id. Usage is implied rather than declared.

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

Deploy Server

Other Tools