Skip to main content
Glama
pvliesdonk

scholar-mcp

by pvliesdonk

Recommend Books

recommend_books
Read-only

Recommend books for a given subject using the Open Library subject API, sorted by edition count to reflect popularity.

Instructions

Recommend books for a subject via Open Library.

Uses the Open Library subject API to find popular books on a topic, sorted by edition count (a proxy for popularity).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results to return (max 50).
subjectYesSubject or topic (e.g. "machine learning", "algorithms", "computer vision").

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.9.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is covered. The description adds meaningful context about the behavior: it uses the Open Library subject API and sorts results by edition count as a popularity proxy, which helps the agent understand the result ordering. This goes beyond the annotations, earning a 4.

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 two concise sentences with the purpose front-loaded and no filler. It efficiently conveys the tool's function and the underlying logic, earning a perfect score.

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?

An output schema exists, so return values are covered. The description explains the API and sorting, and the schema handles parameter details. It is complete for a read-only recommendation tool, though it does not mention potential edge cases or rate limits, which are minor given the annotations.

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%, with both 'subject' and 'limit' fully documented in the schema. The description does not add additional parameter semantics, so the baseline of 3 is appropriate.

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 clearly states the tool's purpose: recommending books for a subject via Open Library, and explains the underlying API and sorting criterion. It distinguishes itself as a recommendation tool, though it does not explicitly contrast with sibling tools like search_books or get_book, so it falls short of a 5.

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?

The description implies when to use the tool (when you need popular books on a subject) by explaining the mechanism, but it does not explicitly state when not to use it or mention alternatives. It provides context but lacks explicit routing guidance relative to siblings.

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