Skip to main content
Glama
reshuibuduo

TMCRA Agent Memory

by reshuibuduo

tmcra_get_job

Retrieve the status and details of an asynchronous job by its ID to confirm completion and access results.

Instructions

Inspect a TMCRA asynchronous job.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.1

TDQS

C2.7/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 behavioral disclosure. It indicates the job is asynchronous and that the tool inspects it, which implies a non-blocking read, but it does not state what side effects, if any, occur, whether it returns only status, or how errors are surfaced.

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?

The description is a single, front-loaded sentence with no filler. It is concise, though slightly under-specified; the brevity is not itself a problem, but it could have used its short length to include a usage hint.

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

Completeness2/5

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

Given the simple single-parameter schema and existing output schema, return-value documentation is not needed. However, the description fails to clarify the relationship to tmcra_wait_job and gives no parameter guidance, leaving an important selection and invocation gap for the agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description does not explain the job_id parameter. The parameter name and title are somewhat self-explanatory, but the description adds no detail about where the ID comes from or how it is used beyond the schema's minimal 'Job Id' label.

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?

The description uses a specific verb ('Inspect') and a clear resource ('a TMCRA asynchronous job'), so an agent can tell it is a read/status operation. It does not explicitly differentiate itself from the sibling tmcra_wait_job, but the core purpose is still clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance about when to use this tool versus tmcra_wait_job or the other siblings. The existence of tmcra_wait_job strongly suggests an important usage distinction (inspecting vs. waiting for a job), but the description does not address it.

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