open-public-domain
Provides tools for searching, reading chapters, full-text search, and retrieving metadata from Project Gutenberg's collection of 70,000+ public domain books.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@open-public-domainsearch for books by Jane Austen"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Open Public Domain
MCP server that gives AI agents access to the world's public domain library. Search, read, and navigate books and audiobooks from Project Gutenberg and LibriVox.
What It Does
Agents can't read books. This fixes that.
Every other tool gives agents access to APIs, databases, and live data. But the written knowledge of human civilization -- books, essays, speeches, historical documents -- is largely inaccessible to agents through clean, legal APIs. Open Public Domain opens that up.
Related MCP server: opds-mcp
Sources
Source | Content | Access |
Project Gutenberg | 70,000+ books, full text | Text, HTML, EPUB |
LibriVox | 15,000+ audiobooks | MP3 chapters |
Tools
Text (Gutenberg)
search_books -- Search across all sources by title, author, or subject. Returns metadata.
get_book -- Full metadata for a book, including parsed chapter list.
read_chapter -- Read a specific chapter. The natural unit of reading.
read_work -- Full text for short works (essays, poems, short stories under ~15k chars).
search_text -- Full-text search within a book. Find where a concept appears across chapters, with context.
Audio (LibriVox)
search_audiobooks -- Search LibriVox by title or author.
list_audio_chapters -- List all audio chapters for an audiobook with MP3 URLs and durations.
get_audio_chapter -- Get the MP3 URL for a specific chapter.
Setup
Claude Desktop / Cursor / Windsurf
Add to your MCP config:
{
"mcpServers": {
"open-public-domain": {
"command": "npx",
"args": ["-y", "open-public-domain"]
}
}
}Hermes
Add to ~/.hermes/config.yaml:
mcp_servers:
open-public-domain:
command: npx
args: ["-y", "open-public-domain"]Development
git clone https://github.com/stuchapin909/open-public-domain.git
cd open-public-domain
npm install
npm startDesign Decisions
Chapter-level navigation, not full-book dumps. A novel is 150,000+ tokens. Agents can't process that. read_chapter gives the agent one chapter at a time -- the same way a human reads.
Full-text search with context. search_text lets an agent say "where does Hobbes talk about the state of nature?" and get back the passage with surrounding context, plus which chapter it's in.
No API keys. All sources are public domain with open APIs. No configuration needed.
Unified search. search_books aggregates across all sources. The agent doesn't need to know or care which source a book comes from.
Roadmap
Standard Ebooks integration (better formatting, curated catalog)
Wikisource integration (primary source documents)
Internet Archive public domain subset
DOAB (open access academic books)
HathiTrust public domain collection
Semantic search across full text
Cross-book citation and quotation tracking
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for Project Gutenberg — 75,000+ public-domain ebooks with full plain-text retrieval.
An MCP server that gives your AI access to the source code and docs of all public github repos
Read-only MCP server exposing a user ORANO library to their own AI agent.
Related MCP Servers
- AlicenseBqualityDmaintenanceA local MCP server that lets LLM agents read EPUB books and PDF documents with outline-first navigation, precise node reads, and local SQLite persistence.292MIT
- AlicenseAqualityBmaintenanceAn MCP server that lets an LLM browse, search, and download books from OPDS catalogs (e.g., Project Gutenberg, Standard Ebooks) using tools for feed navigation, full-text search, and acquisition link downloads.41AGPL 3.0
- AlicenseAqualityBmaintenanceAn MCP server that allows LLMs to read and search the text of ebooks from Book Orbit, using a navigation-first approach with chapter listing and paginated text retrieval.332MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that gives LLMs direct read access to the MIT Internet Classics Archive, allowing them to list authors, list works, and fetch word-range slices of texts.MIT