find-a-book-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_formatsA | Search for a book and return all available formats grouped by unique title+author. Instead of many duplicate rows, each book appears once with a list of formats (EPUB/MOBI/PDF/AZW3 etc.) and their MD5s. |
| search_booksA | Search for books on Library Genesis (tries multiple mirrors automatically). Returns 5 results per display page with pagination support. Each book includes title, author, year, language, format, size, size_bytes, and MD5. |
| download_bookA | Download a book from LibGen by MD5 hash. Tries multiple mirrors automatically (libgen.li → libgen.rs → libgen.st → library.lol). Returns local file path, size_bytes, and extension. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool serves a distinct purpose: searching books (search_books), grouping formats (get_formats), and downloading by MD5 (download_book). There is no functional overlap.
All tool names follow a consistent verb_noun pattern in snake_case, making them predictable and easy to distinguish.
Three tools cover the core workflow of a book search and download server: search, inspect formats, and download. The count is well-scoped for this domain.
The tool set provides complete coverage for the intended purpose: users can search for books, see available formats, and download by MD5. There are no obvious gaps for a read-only retrieval service.