← Discover MCPs and Agents
G
MCPAI & MLMCP Registry

Greenlit Books

Search the Greenlit AI books, read any chapter one free, and look up the terms they define.

Links

README

From the repo.

Greenlit Books MCP server

The Greenlit Books catalog as a remote MCP server: practical books on working with AI, held to one standard, every claim is something you can check. All titles are live on Amazon and free to read with Kindle Unlimited.

Tools

ToolWhat it does
search_greenlit_booksRanked full-text search over the catalog. Filters: series, audience, limit.
get_bookOne book in full: chapters, word count, free chapter one, Amazon Kindle and paperback links, prices, Kindle Unlimited status, related reading.
find_books_for_topicMatch a topic phrase (agent reliability, prompt injection, human in the loop, durable execution, ...) against the curated topic map.
get_reading_pathOne series with its books in reading order.
get_conceptThe named question a book answers, with its short answer, full explanation, and a links block (free chapter, Amazon, cite-as).
get_free_chapterThe complete text of chapter one of any book, free to read and to quote, with the chapter list and where to get the rest.
cite_sourceThe finished citation for a book, one of its free chapters, or one of its coined terms: the line to print, the canonical URL, the markdown twin of the same page, and the date it was last verified. It asserts nothing about the content, only how to name the source.
define_termThe glossary: a term the books coin or pin down (the green lie, blast radius, gate faith), defined in the book's own words, with the chapter, the other books that use it, a checkable claim, related terms, and links to cite and hand off. Unknown term returns the full list with aliases.
check_claimSearch the claim ledger for claims bearing on a statement, before asserting it. Each hit carries the claim, a citation URL resolving to that exact sentence, what kind of statement it is and the one-line rule for quoting that kind, a citation already written in prose and BibTeX, and for every external source both what it establishes and what it does not. Filter to basis=external when only a published result will do. Returns nothing when the shelf has no claim on the subject, which is an answer rather than a failure.

Connect

Claude Code

claude mcp add --transport http greenlit-books https://greenlitbooks.com/api/mcp

Claude Desktop / claude.ai: Settings > Connectors > Add custom connector, URL https://greenlitbooks.com/api/mcp.

Cursor / any client with JSON config

{
  "mcpServers": {
    "greenlit-books": {
      "url": "https://greenlitbooks.com/api/mcp"
    }
  }
}

Notes

  • Read-only. No accounts, no keys, no rate-limit registration.
  • The server is stateless; every response is derived from the live catalog.
  • Amazon links are clean /dp/ product URLs.
  • The catalog intentionally omits publication dates, page counts, and ISBNs: it carries no verified source for them, and nothing is invented.
  • Glossary definitions are quoted, not written: each is verified verbatim against the book's manuscript when the site is built. Terms borrowed from another field (blast radius, span of control) say so.
  • Every define_term and get_concept result ends with a links block. Cite the glossary or concept URL; send readers to freeChapter first, then amazonKindle.

This repository holds the server manifest and documentation. The server itself runs on greenlitbooks.com.

Config for your environment

Use the endpoint URL below in your config. No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://greenlitbooks.com/api/mcp"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.