Skip to main content
Glama

Export a whole collection as a bibliography

zotero_export_collection_bibliography
Read-only

Export a Zotero collection as a formatted bibliography in APA, BibTeX, or CSL-JSON. Specify the collection key and style to get citations for up to 500 items.

Instructions

Render every item in a collection as a bibliography.

Args: collection_key: Eight-character collection key. style: "apa", "apa-intext", "bibtex" or "csl-json". limit: Maximum number of items to include (1-500).

Returns: The formatted bibliography.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
styleNoapa
collection_keyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description does not contradict them. It adds useful constraints like the limit range and the return value, but it does not disclose any additional behavioral caveats such as pagination behavior or style-specific output differences.

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 compact and well structured: a leading sentence, a short Args block, and a Returns line. Every sentence adds information, and the most important scoping phrase appears first.

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 export with an output schema and safe annotations, this description is complete enough to invoke correctly. Defaults are available in the schema, and the description supplies the remaining invocation-critical details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description carries the full burden for parameter meaning. It provides the collection key format, the exact allowed style values, and the 1-500 limit bound, all of which go beyond the bare input schema.

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 opening line 'Render every item in a collection as a bibliography' names a specific action and resource with clear scope. It does not explicitly contrast with the sibling tool zotero_export_citations, so it stops short of full sibling differentiation.

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?

The description gives no guidance about when to use this tool instead of alternatives such as zotero_export_citations, and it lists no exclusions or prerequisites. The intended use must be inferred from the name and title rather than from explicit usage direction.

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