Skip to main content
Glama
generect

Generect Live API MCP Server

Official
by generect

Poll a bulk job (free)

get_bulk_job
Read-onlyIdempotent

Check the status and results of a bulk job by providing the job ID and job type. Polling is free and does not spend credits.

Instructions

Status and results of a bulk job. FREE — this call never spends credits. Polling is free — the work was already billed at submit time. Poll every few seconds, not in a tight loop.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesjob_id returned by start_bulk_job.
job_typeYesSame job_type used at submit.
timeout_msNoRequest timeout in milliseconds.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobNo
costNo
job_idNo
resultsNo
job_typeNo
test_modeNo
test_mode_noticeNo
vocabulary_warningsNo
deprecated_params_ignoredNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.9.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already provide readOnlyHint, openWorldHint, and idempotentHint; the description adds valuable non-obvious cost behavior ('FREE — this call never spends credits', 'already billed at submit time') and polling guidance. No contradiction with annotations.

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?

Four short sentences, each earning its place: purpose, cost behavior, billing rationale, and polling cadence. Front-loaded status/result statement followed by actionable guidance with zero waste.

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?

Output schema covers return values, annotations cover safety/idempotence, and the description fills the cost and polling-cadence gap. It could explicitly mention in-progress job states, but the polling advice strongly implies them, so only a minor gap remains.

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 100%, so the baseline is 3. The description adds no parameter-specific meaning beyond the schema, but it does not need to compensate given full coverage.

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?

Description states 'Status and results of a bulk job' with a specific verb and resource. It distinguishes itself from start_bulk_job in the sibling list through the polling/free framing, making intent unambiguous.

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?

Gives explicit cadence guidance ('Poll every few seconds, not in a tight loop') and implies post-submit usage ('the work was already billed at submit time'). It does not explicitly name alternatives or exclusions, but the context is clear enough.

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