Skip to main content
Glama

dashai_job_status

Read-onlyIdempotent

Check the status of an enqueued job (training, prediction, or explanation) to see if it is queued, running, finished, or failed, so you know whether to wait or address an error.

Instructions

Polls the status of an enqueued job (training, prediction, explanation).

dashAI's statuses: not_started (queued), started (running), finished (done) and error (failed). Telling started from error matters: the first is worth waiting on, the second does not improve by polling again.

Args: params (JobStatus): contains: - job_id (str): id returned when enqueuing

Returns: str: JSON {"job_id": str, "status": str, "finished": bool, "failed": bool, "raw": {...}}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive behavior, so the bar is lower. The description adds meaningful context by explaining the status values (not_started, started, finished, error) and their practical interpretation, which helps the agent decide whether to keep polling.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and well-structured: a clear purpose line, a brief but valuable status explanation, then Args and Returns sections. Every sentence adds necessary information with no filler or repetition.

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

Completeness5/5

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

This is a simple polling tool, and the description covers purpose, parameter source, return format, and status interpretation. With annotations providing the safety profile, there is no critical missing context.

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

Parameters4/5

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

Although schema_description_coverage is reported as 0%, the description explicitly documents the 'job_id' parameter and clarifies that it is returned when enqueuing. The schema also includes a similar description, so the parameter's meaning is fully covered and not just left to schema alone.

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

Purpose5/5

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

The description opens with 'Polls the status of an enqueued job', using a specific verb and resource. It also lists examples (training, prediction, explanation), which distinguishes it from sibling tools like dashai_train_model or dashai_predict.

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

Usage Guidelines4/5

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

The description provides clear context on when polling is useful, explicitly stating that a 'started' status is worth waiting on while 'error' will not improve with further polling. This gives implicit when-to-use and when-not-to-use guidance, though it does not explicitly name alternative tools.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Maarmapa/dashai-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server