Skip to main content
Glama
BizVerify

BizVerify MCP Server

Official
by BizVerify

Check Job Status

check_job_status
Read-onlyIdempotent

Poll a running verification job to get the full result, failure reason, or a 'still processing' status for retry.

Instructions

Poll a long-running (async) verification job created by verify_business. Returns the full verification result once complete, a failure reason if it failed, or a "still processing" status to poll again. Free — no credits charged — but requires authentication. Pass the job_id from the verify_business async response.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesJob ID returned by verify_business when it runs asynchronously

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, but the description adds valuable context: it discloses that the tool is free (no credits charged), requires authentication, and details the three possible return states (complete result, failure reason, or 'still processing'). This goes beyond annotations and provides essential operational information.

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 three sentences, each earning its place: first sentence states purpose and source, second details return states, third covers cost, authentication, and parameter origin. It is front-loaded, efficient, and without redundant wording.

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?

With a single well-documented parameter, strong annotations, and no output schema, the description covers all necessary context: purpose, behavior, return types, cost, auth, and how to obtain the required parameter. It is complete for this tool's simplicity.

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 coverage is 100% with job_id described as 'Job ID returned by verify_business when it runs asynchronously.' The description's instruction to 'Pass the job_id from the verify_business async response' essentially repeats the schema description, adding no new semantic meaning. Baseline 3 is appropriate given the high 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?

The description uses a specific verb 'Poll' and identifies the resource as 'a long-running (async) verification job created by verify_business.' It clearly distinguishes this tool from siblings like verify_business (which creates the job) and get_account, get_config, etc. by focusing exclusively on polling job status.

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 explicitly states this tool is for polling jobs created by verify_business and instructs to pass the job_id from verify_business's async response, making the usage context clear. It does not explicitly address when-not-to-use or alternatives, but given the unique polling role among siblings, this is a minor gap.

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