Skip to main content
Glama
kristianedlund

hardcover-mcp

get_trending_books

Retrieve currently trending books sorted by popularity, with options to set a time window (week, month, etc.) and pagination.

Instructions

Get currently trending books, most popular first. Choose a time window with 'duration'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax books to return (default 25, max 100).
offsetNoPagination offset (default 0).
durationNoTime window (default 'week').

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.7.1

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description must carry behavioral disclosure itself. It does add one real behavioral fact (results are ranked by popularity descending), but omits return shape, pagination behavior across offset/limit, and anything about the data source or caching.

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?

Two short sentences, front-loaded with the operation and ordering, with no filler sentences. Every clause contributes.

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?

For a zero-required, three-parameter read tool with full schema coverage and no output schema, the description covers purpose, ordering, and the key optional parameter adequately. It leaves minor gaps around result shape and pagination that a caller might want.

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 defaults and enum values documented for duration, limit, and offset, so the baseline of 3 applies. The description repeats the duration concept without adding syntax, format, or interaction details beyond the 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?

States a specific verb and resource ('Get currently trending books') plus the ordering ('most popular first'), which is enough to separate it from search_books and get_list. It does not name a sibling or defining scope, 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 clause 'Choose a time window with duration' is the only usage guidance and merely points at a parameter the schema already documents. There is no when-to-use-this-vs-search_books/get_list guidance and no exclusions.

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