Skip to main content
Glama

Lumethic Photo Verification

get_verification

Retrieve a verification by id: processing status and per-algorithm authenticity results. Completed single-image (image_only) verifications also include a verdict and a structured evidence_report with per-check findings and coverage. Works for both API-key callers (scoped to their account) and keyless anonymous callers (any anonymous verification, which are public by link).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
verification_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses what data is returned (processing status, per-algorithm results, verdict, evidence_report for completed single-image cases) and explains access control (API-key scoping vs anonymous public-by-link). It does not explicitly state that the operation is read-only, but the verb 'Retrieve' implies this, and the absence of side-effect warnings is acceptable for a getter.

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 adding essential information: the core action, the return details for completed single-image verifications, and the access model. It is front-loaded with the primary verb, and no sentence is wasted.

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?

Given the tool's simplicity (one parameter, no annotations, but an output schema exists), the description covers all necessary aspects: what it does, what it returns, the special case for image_only verifications, and authorization for both API-key and anonymous callers. No significant gaps remain.

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?

The schema coverage is 0%, so the description must compensate. It does so by explicitly saying 'Retrieve a verification by id', directly tying the single required parameter verification_id to its purpose. The parameter name itself is self-explanatory, so even without detailed schema documentation, the agent can correctly use it.

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 begins with 'Retrieve a verification by id', a specific verb+resource pair that clearly distinguishes this from sibling listing tools like list_verifications. It further specifies the exact data returned: processing status, per-algorithm authenticity results, and for completed single-image verifications, a verdict and evidence_report.

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 gives clear context on when to use this tool: to retrieve a single verification by its ID. It also provides important usage constraints by stating it works for both API-key callers (scoped to their account) and anonymous callers (accessing public-by-link verifications). However, it does not explicitly name alternatives or exclusions, which would elevate it to a 5.

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

Each tool targets a distinct resource/action: verification creation (RAW+JPEG vs single-image), retrieval/listing, sharing, PSD export, upload helper, quota, tags, and marketplace listings are clearly separated. The closest pair — verify_photo and verify_content_credentials — is disambiguated by input type and forensic scope.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: create_, get_, list_, request_, share_, unshare_, verify_. Single-item getters use get_, collection getters use list_, and the verification verbs are uniform.

Tool Count5/5

14 tools is well within the well-scoped range and each maps to a distinct operation. The count covers core verification plus sharing, PSD export, uploads, quota, tags, and marketplace without feeling padded.

Completeness4/5

The core verification lifecycle is complete: upload, verify, retrieve, list, check quota, share/unshare, and export PSD. Minor gaps exist — tag assignment is only done via web app/API, PSD download happens outside MCP, and there are no delete/listing-management tools — but they do not block the primary workflow.

Resources