Skip to main content
Glama

Read chapter one of a book, in full

get_free_chapter

The complete text of chapter one of any Greenlit book, free to read and free to quote. Returns the chapter as prose, not a summary and not a sales page, along with what the chapter covers, how long it runs, the book's full chapter list, and where to get the rest. Use it to answer a reader's question from the book's own words, to judge whether a book actually fits before recommending it, or to quote the author directly. Every book on the shelf has one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesThe book slug, e.g. the-first-real-job.

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly states the output format (prose, not summary), the additional return contents (chapter coverage, length, chapter list, where to get the rest), and that the chapter is free to read and quote. It does not mention potential errors or authentication requirements, but for a read-only tool this is sufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose and return type, then expands with use cases and scope. It is moderately sized and each sentence contributes useful context, though the closing 'Every book on the shelf has one' adds minor flourish rather than essential information.

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?

Given the tool's low complexity (one required parameter) and no output schema, the description covers what is returned, how it behaves, and when to use it. It is complete enough for an agent to invoke the tool confidently, with only minor gaps around error behavior.

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 the slug parameter already documented by name and example. The description adds no further parameter-specific meaning, but the schema alone is adequate; baseline 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 returns the complete text of chapter one of a Greenlit book as prose, not a summary or sales page. It effectively distinguishes itself from non-chapter resources, though it does not explicitly differentiate from the sibling get_book tool.

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?

The description provides clear use cases: answering a reader's question from the book's own words, judging whether a book fits before recommending it, and quoting the author directly. It does not mention when to use alternatives like get_book or search_greenlit_books, so it falls just short of explicit when-not guidance.

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.2/5.0
Disambiguation5/5

Each tool targets a clearly distinct action: topic discovery, full-text search, book details, concept lookup, free chapter text, and reading paths. The only pair that could overlap—find_books_for_topic and search_greenlit_books—is cleanly separated by curated topic mapping versus ranked full-text search.

Naming Consistency4/5

Four tools follow the get_* pattern, while the two discovery tools use find_ and search_. This is readable and predictable, with only a minor deviation in verb choice and one name including the server brand.

Tool Count5/5

Six tools is a well-scoped size for a book catalog server. Each tool covers a distinct user need without redundant or bloated surface area.

Completeness5/5

The surface covers the full reader journey: discover via topic or search, get book details, read the free chapter, understand the concept, and follow a reading path. No obvious dead ends or missing core operations for a catalog-focused server.