Skip to main content
Glama

Get conversion result

get_result

Fetch the status and (once finished) the structured result of a job previously created by convert_pdf. Poll this with the job_handle convert_pdf returned until _meta.state is "done" or "failed" -- do not call convert_pdf again while waiting. job_handle is scoped to the account that created it; handles belonging to a different account are rejected as not found.

Requires sign-in (OAuth): this session is not authenticated, so calling this tool will fail until the PDFIntact account is connected and authorized.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_handleYesThe job_handle returned by convert_pdf

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals the polling contract, terminal states, account scoping with rejection as not found, and the OAuth requirement, all of which go well beyond a bare 'fetch result' statement.

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 front-loaded: purpose first, then polling instructions, guardrails, and auth constraints. Every sentence earns its place, with no filler or redundancy.

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?

For a single-parameter polling tool, the description covers the core lifecycle, terminal states, account scoping, and authentication. However, with no output schema present, it leaves the structured result format and any failed-state error details unspecified, which is the main remaining gap.

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?

Schema coverage is 100% and the schema already describes job_handle as the handle returned by convert_pdf. The description adds value by reinforcing the source of the handle, explaining that it is account-scoped, and noting that foreign handles are rejected as not found.

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 and resource: 'Fetch the status and (once finished) the structured result of a job previously created by convert_pdf.' This clearly identifies the tool's role and distinguishes it from the sibling tools convert_pdf and get_balance.

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

Usage Guidelines5/5

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

The description explicitly states when to use the tool: poll with the job_handle returned by convert_pdf until _meta.state is 'done' or 'failed'. It also gives a concrete when-not: do not call convert_pdf again while waiting, and warns that unauthenticated calls will fail until OAuth is connected.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.9/5.0
Disambiguation5/5

Each tool has a clearly distinct role: convert_pdf starts an async conversion job, get_result polls that job, and get_balance checks account credits. There is no meaningful overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow the same snake_case verb_noun pattern: convert_pdf, get_balance, get_result. The naming is predictable and immediately signals each tool's action and target.

Tool Count5/5

Three tools is well-scoped for this server's purpose: submit a conversion, retrieve the result, and check the prerequisite credit balance. Each tool earns its place in the minimal async workflow.

Completeness5/5

The core lifecycle is fully covered: convert_pdf creates the job, get_result reads its status and output, and get_balance handles the payment/credit prerequisite. No essential operation for this narrow domain is missing, and there are no dead ends in the workflow.

Resources