Skip to main content
Glama

Get a person's book recommendations

get_person_recommendations
Read-onlyIdempotent

Return every book a specific person (entrepreneur, investor, author, celebrity…) has recommended, with their verified quote about each book and a link to the original source (interview, podcast, post). Use this when a user asks 'what books does Naval Ravikant recommend?', 'Tim Ferriss's favorite books', or wants reading habits of a specific public figure. Accepts a name ('Naval Ravikant') or MRB slug ('naval-ravikant').

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax books to return (default 20)
personYesPerson's name or MRB slug, e.g. 'Naval Ravikant'

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
modeYes
itemsYes
sourceYes

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds meaningful behavioral context beyond that: it mentions returning 'verified quote' and 'link to the original source', and that the input can be a name or a slug, which helps set expectations.

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 three sentences with no wasted words: purpose, usage examples, and input format. It is front-loaded with the main action and reads efficiently.

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 covers what the tool does, when to use it, and how to specify the person. An output schema exists, so return details are handled elsewhere. The only gap is that 'Return every book' is slightly contradicted by the optional limit parameter (default 20), which is not acknowledged in the description.

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 the baseline is 3. The description repeats the person parameter example ('Naval Ravikant') and the slug form, but this largely duplicates the schema's own description and does not add significant meaning or clarify the limit parameter beyond what the schema already provides.

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 uses a specific verb and resource: 'Return every book a specific person... has recommended'. It also includes concrete query examples ('what books does Naval Ravikant recommend?') that clearly distinguish it from sibling tools like search_books and get_book_recommenders.

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

Usage Guidelines4/5

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

Explicit usage guidance is provided with the phrase 'Use this when a user asks...' followed by concrete examples. However, it does not explicitly state when not to use the tool or name alternative tools, so it stops short of full when-not/alternatives coverage.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool targets a distinct query type: book-centric recommendations, topic lists, person-centric recommendations, series ordering, summaries, and general search. The overlap between search_books and get_book_recommenders is clarified by their descriptions, so there is no real ambiguity.

Naming Consistency5/5

All tools follow a consistent verb-first pattern: get_ or search_ followed by a descriptive noun. This makes the tool names predictable and easy to remember.

Tool Count5/5

Six tools is well-scoped for a book recommendation server, covering the core user intents without unnecessary bloat. Each tool earns its place and there is no sense of redundancy or missing functionality.

Completeness5/5

The tool set covers the full range of book-related queries: searching, finding recommendations by book or person, curated topic lists, series order, and summaries. There are no obvious gaps that would prevent an agent from answering common user questions.