Skip to main content
Glama

Get extraction result

mindee_get_inference
Read-only

Fetch the structured result of a completed inference by id, returned as a compact map of extracted fields (plus raw_text if it was requested). V2 API: GET /v2/inferences/{inference_id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rawNoReturn the full unshaped API response instead of the compact fields map. Default false.
inference_idYesInference id (from a Processed job's result_url, or from mindee_extract_document).

Schema Changelog

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

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds value by specifying the return format as a 'compact map of extracted fields (plus raw_text if it was requested)'. This goes beyond the annotation's safety indication, providing useful output expectations. No contradiction exists.

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 two sentences with the main action front-loaded, followed by a concise output description and API endpoint. Every sentence provides necessary information without fluff.

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 simple retrieval tool with 2 parameters, the description covers the action, output shape, and endpoint. It does not explain error handling or pagination, but these are not critical given the tool's simplicity and the presence of annotations. The return format detail adds completeness.

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 both parameters described (inference_id and raw). The description mentions 'by id' which aligns with the inference_id parameter but does not add significant new semantics beyond the schema. The mention of raw_text in the output is not directly a parameter detail.

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 clearly states the tool fetches the structured result of a completed inference by ID, using specific verbs ('Fetch') and a specific resource ('structured result of a completed inference'). It distinguishes itself from siblings like mindee_get_job (job status) and mindee_extract_document (submission) by focusing on the result retrieval.

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 implies usage after an inference is completed ('completed inference'), giving clear context on when to call it. It does not explicitly mention alternatives or when not to use it, but the purpose is distinct enough from sibling tools to guide selection.

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.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: extracting documents, fetching inference results, checking job status, and listing available models. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent pattern: the 'mindee_' prefix followed by verb_noun (extract_document, get_inference, get_job, list_models). This makes the set predictable and easy to navigate.

Tool Count5/5

With only 4 tools, the server is tightly scoped to the essential Mindee operations: submit, poll, retrieve, and explore models. Each tool earns its place, and the count is ideal for this purpose.

Completeness5/5

The tool set covers the full document extraction lifecycle: listing models, enqueuing extraction (with built-in polling), checking job status for long-running requests, and fetching the final inference result. No critical operation is missing.