Skip to main content
Glama
bindresearch

MCP Zotero

by bindresearch

get_paper_text

Read-onlyIdempotent

Retrieve full-text excerpts from Zotero items by character offset or keyword query, without downloading or parsing PDFs.

Instructions

Read bounded text from Zotero's synchronized full-text endpoint.

This tool does not download or parse the PDF. Zotero does not provide reliable page boundaries, so returned segments use character offsets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoOptional literal phrase. When set, return excerpts around matches instead of one contiguous text segment.
offsetNoCharacter offset for contiguous text or the start of excerpt search.
item_keyYesThe 8-character Zotero key of a bibliographic item.
attachment_keyNoA PDF attachment key returned by get_paper. It is required only when the paper has multiple PDF attachments.
max_charactersNoMaximum text characters to return. The server-configured maximum is used when this value is omitted.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNo
statusYes
messageNo
item_keyYes
segmentsNo
match_countNo
next_offsetNo
total_pagesNo
indexed_pagesNo
attachment_keyNo
total_charactersNo
content_charactersNo
indexed_charactersNo
available_attachmentsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

The annotations already declare readOnly and idempotent behavior. The description adds context about not downloading or parsing PDFs and the use of character offsets, which provides some behavioral detail beyond the annotations, but it does not cover other potential behaviors like error conditions or performance implications.

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 concise and to the point, consisting of three short sentences with no redundant or irrelevant information. It efficiently communicates the core function and key limitations without unnecessary elaboration.

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?

The description is complete enough given the presence of an output schema. It covers the purpose, limitation (no page boundaries), and a key technical detail (character offsets). It does not mention error scenarios or return format, but those are not required when an output schema exists.

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?

The input schema provides descriptions for all five parameters, achieving 100% coverage. The description adds a brief clarification about character offsets, which aids understanding of the offset parameter, but it does not elaborate on the other parameters (item_key, attachment_key, max_characters) beyond what is already in the schema.

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's purpose with a specific verb ('Read') and resource ('bounded text from Zotero's synchronized full-text endpoint'). It also differentiates itself from sibling tools by explicitly noting it does not download or parse PDFs, making its scope unambiguous.

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?

No explicit guidance is provided on when to use this tool versus the sibling tools (search_papers, get_paper). The description mentions limitations (no page boundaries, character offsets) but does not state conditions under which this tool is preferable or when alternatives should be chosen.

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

Deploy Server

Other Tools