Skip to main content
Glama
oylx666

Paper Reader MCP

by oylx666

paper_visual

Read-onlyIdempotent

Retrieve exactly one relevant figure or render a specific original PDF page/crop to visually verify evidence from an indexed paper.

Instructions

Return exactly one relevant extracted image or one on-demand original PDF page/crop.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bboxNoOptional pixel crop (x0,y0,x1,y1) after rendering; requires page_number.
assetNoExact linked asset path/name returned by paper_search. Prefer this for figures.
scaleNoPDF render scale; 3.0 protects small chart markers while oversized crops are pixel-capped.
paper_idYespaper_id returned by paper_ingest.
evidence_idNoEvidence identifier returned by paper_search. Preferred: crops its source region automatically.
page_numberNo1-based original PDF page. With evidence_id, selects one page of multi-page evidence.
evidence_idsNoTwo to six evidence IDs returned as one labeled contact sheet; preferred over repeated visual calls.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, and openWorldHint=false, so the safety profile is covered and the description need not repeat it. The description adds that output is rendered on demand ('on-demand original PDF page/crop'), which hints at server-side rendering, but it omits cost/latency implications, and the phrase 'exactly one' sits awkwardly against the schema's contact-sheet mode for 2-6 evidence IDs. With annotations covering the behavioral bar, a 3 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with no filler or redundancy; the core promise (what is returned) leads immediately. It is efficiently sized, though its brevity veers toward under-specification for a 7-parameter tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description partially carries the return-value burden by naming the returned artifact (image, PDF page, or crop), which is useful. However, for a 7-parameter tool with three distinct output modes (single image, PDF page, contact sheet), it never explains how modes are selected or what the contact-sheet return looks like, leaving real gaps.

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 every parameter (bbox scaling, asset path, scale cap, page_number, evidence_id, evidence_ids) is already documented in the schema itself. The description adds no parameter-level meaning beyond what the schema provides, which is the correct baseline of 3 when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a specific verb ('Return') and a concrete resource (an extracted image, or an on-demand original PDF page/crop), which is clearer than a bare image-fetch restatement. It does not, however, distinguish the tool from its siblings (paper_ingest, paper_search, paper_batch_search) or state why one would fetch a visual rather than search. Purpose is clear but sibling differentiation is absent.

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

Usage Guidelines2/5

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

There is no when-to-use or when-not-to-use guidance in the description; the only routing hints ('Prefer this for figures', 'preferred over repeated visual calls') live in the schema property descriptions, not the tool description. An agent gets no explicit condition for choosing this tool over paper_search or paper_ingest. Usage is only implied by the tool name.

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