Skip to main content
Glama

List recently added Zotero items

zotero_get_recent
Read-only

List the most recently added items from a Zotero library, with an optional limit from 1 to 50. Get a markdown list of newest entries first.

Instructions

List the most recently added items in the library.

Args: limit: Number of items to return (1-50).

Returns: A Markdown list of items, newest first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

The description adds behavioral context by specifying the return format (Markdown list) and ordering (newest first). The annotations already declare readOnlyHint=true and destructiveHint=false, so the description doesn't need to repeat that. It adds useful details beyond the annotations.

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, with a clear structure: a one-sentence overview, an Args section, and a Returns section. No unnecessary words or redundancy. It is front-loaded and easy to scan.

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?

For a simple read-only list tool with one optional parameter and an output schema, the description covers all essential aspects: what it does, the parameter constraint, and the return format. It is complete for the tool's complexity, and the presence of an output schema means the return value details are handled elsewhere.

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 provides the limit parameter with a default but no description. The tool description adds the valid range (1-50), which is not present in the schema. This is valuable context for selecting a value, though it doesn't mention the default (which is 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 action ('List') and the resource ('most recently added items in the library'). It is specific and distinguishable from sibling tools like zotero_search or zotero_get_item, even though it doesn't explicitly name alternatives. The purpose is 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?

There is no guidance on when to use this tool versus alternatives like zotero_search or zotero_get_collection_items. The description only states what it does, leaving the agent to infer the appropriate context. No exclusions or alternative routing are provided.

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