Skip to main content
Glama
zjgxkj
by zjgxkj

get_job_status

Read persisted job state, including session details and stage statuses, without calling Claude Code. Retrieves the current status of a job by its ID and working directory.

Instructions

Read persisted job state (sessions, stage statuses); no CC call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cwdYes
job_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNo
foundNo
job_idYes
statusNo
created_atNo
updated_atNo
review_errorNo
review_statusNo
review_summaryNo
execution_errorNo
execution_statusNo
execution_summaryNo
review_session_idNo
execution_session_idNo
review_session_confirmedNo
execution_session_confirmedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

C2.7/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose that this reads persisted state and makes 'no CC call,' which suggests a side-effect-free read, but it omits permissions, side effects, and other operational constraints.

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. However, the phrase 'no CC call' is cryptic and would benefit from clarification rather than being left as unexplained shorthand.

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?

An output schema exists, so return values need not be explained. But with no annotations, 0% schema description coverage, and two required parameters, the description is too sparse to fully guide correct invocation.

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

Parameters1/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 either required parameter. The meaning of job_id is somewhat implied by 'job state,' but cwd is never addressed, so the description adds no useful parameter semantics.

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 states a specific verb and resource: read persisted job state, including sessions and stage statuses. It distinguishes the operation from executing a job, though it does not mention sibling tools by name.

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 explicit guidance on when to use this tool versus run_job, run_jobs, or the other task-related siblings. The read-only framing implies inspection, but conditions and alternatives are absent.

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