Skip to main content
Glama

Get Reading List

get_reading_list

Retrieve books from your reading queue, such as 'to-read' or 'currently-reading'. Set shelf and limit to fetch a batch of titles for tracking or recommendations.

Instructions

Get books from user's reading queue ('to-read' or 'currently-reading').

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of books to return. Defaults to 8.
shelfNoQueue name ('to-read' or 'currently-reading'). Defaults to 'to-read'.to-read

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It does not state that this is a read-only operation, whether authentication/account scoping is required, or how pagination/limit behaves beyond the default. Only the queue values are disclosed.

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?

A single tight sentence with zero filler, and the resource plus valid queue values are front-loaded. Nothing needs trimming.

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?

An output schema exists so return values need not be explained, and both parameters are fully documented in the schema. However, with no annotations the description should still cover the read-only nature and scope, which it omits, leaving it only minimally viable.

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 both parameters (limit, shelf) are already fully documented in the schema. The description merely repeats the shelf values with no added syntax, format, or behavioral meaning, so the baseline 3 applies.

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 states a specific verb (get) and resource (books from the user's reading queue) and enumerates the two valid queue values. It implicitly separates itself from search_books and get_watchlist, but never names a sibling to sharpen the distinction.

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

Usage Guidelines3/5

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

Usage is only implied: an agent can infer this is for fetching the user's own queued books rather than searching. There is no guidance on when to prefer this over search_books, nor any exclusions or prerequisites.

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