Search 22,000 rare pre-modern texts (alchemy, Hermetica, Kabbalah) via @source-library/mcp-server (npx)
@source-library/mcp-server v4.3.0 exposes 11 tools for navigating a unique corpus of 22,000+ rare pre-modern books (16th–18th century editions in Latin, German, Greek, Arabic) with AI-generated English translations. The corpus specifically targets texts that current LLMs were NOT trained on — the actual primary sources behind figures like Ficino, Newton, Leibniz, and Jung.\n\nKey tools: searchlibrary (full-text), listbooks (catalog browse), searchtranslations (passage-level), searchconcept (semantic/embedding search), getbook (AI summary + chapter outline), getbooktext (read chapters), getquote (exact citation), search_images (50k+ illustrations + 23k artworks). Zero auth, stdio, npx — just works.
Recipe: Search rare pre-modern texts via @source-library/mcp-server
Server: @source-library/mcp-server v4.3.0 Launch: npx -y @source-library/mcp-server (stdio) Auth: None required — zero config Corpus: 22,000+ books (alchemy, Hermetica, Kabbalah, theology, early science) with AI-generated English translations
Tools available (11 total)
| Tool | Purpose |
|---|---|
search_library | Full-text search across titles, authors, translations, OCR |
list_books | Browse catalog by author/language/category |
search_translations | Search inside translated page text across all books |
search_concept | Semantic search via embeddings (Gemini) — finds concepts even without keyword match |
search_within_book | Search inside a specific book |
get_book | AI-generated summary, chapter outline, metadata |
get_book_text | Read chapter text (original + translation) |
get_quote | Exact page text for citation |
search_images | 50k+ illustrations + 23k standalone artworks |
check_duplicate | Dedup check before import |
submit_feedback | Report issues (write tool — use sparingly) |
Verified recipe
Step 1: Search for books about the philosopher's stone:
{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"search_library","arguments":{"query":"philosopher stone alchemy","limit":3}}}Returns 34 total matches, top 3:
- "Philosopher's Stone — Liber Vere Aureus, pre-1626" (Latin, 1620) by C.V.M./Erskine
- "Chemical Theater" (Latin, 1602) — Theatrum Chemicum
- Page 648 of "Triumph Wagen antimonii" by Basilius Valentinus (1604) with snippet about "That same beautiful red stone, The Carbuncle…"
Step 2: Get full book summary for result #1:
{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"get_book","arguments":{"book_id":"69b4188d2b0edf3eaa2dd39d"}}}Returns rich metadata:
- 206 pages, 201 translated
- Categories: alchemy, hermeticism, natural-philosophy
- AI summary: describes three phases (First Matter preparation, fire regulation, medicinal application)
- Themes: alchemical transmutation, furnace construction, philosophical dissolution, multiplication of the Stone
Key observations
- Cold start: ~3s for npx install + server boot
- Latency: searchlibrary ~2s, getbook ~3s (hits remote sourcelibrary.org API)
- Rate limits: anonymous callers get ~50 pages/24h for getbooktext; sign in for more
- NDJSON framing: server uses standard Content-Length framing (not NDJSON)
- Unique value: this corpus is specifically what LLMs were NOT trained on — fills the gap beyond training data
When to use
- Agent needs primary source evidence for pre-modern thought (alchemy, Hermetica, theology, early science)
- Research tasks requiring actual text from 16th–18th century books
- Finding illustrations/engravings from rare historical editions
- Cross-corpus thematic discovery via semantic search
{ "request": { "jsonrpc": "2.0", "id": 3, "method": "tools/call", "params": { "name": "search_library", "arguments": { "query": "philosopher stone alchemy", "limit": 3 } } }, "response": { "result": { "content": [ { "type": "text", "text": "{"query":"philosopher stone alchemy","total":34,"results":[{"id":"69b4188d2b0edf3eaa2dd39d","type":"book","title":"Philosopher's Stone — Liber Vere Aureus, pre-1626","author":"C.V.M.; George Erskine","language":"Latin","published":"1620","url":"https://sourcelibrary.org/book/philosopher-s-stone-liber-vere-aureus-pre-1626-erskine"},{"id":"6a1009bbf71729295096b39b","type":"book","title":"Chemical Theater","language":"Latin","published":"1602"},{"id":"69c831db6c6f3cc53c84ddef","type":"page","title":"Triumph Wagen antimonii","author":"Basilius Valentinus","language":"Latin","published":"1604","page_number":648,"snippet":"That same beautiful red stone, The Carbuncle a legendary glowing red gemstone, often identified with the Philosopher's Stone, I mean no other But the one that is nearest to gold..."}]}" } ] }, "jsonrpc": "2.0", "id": 3 }, "get_book_response": { "id": "69b4188d2b0edf3eaa2dd39d", "title": "Philosopher's Stone — Liber Vere Aureus, pre-1626", "author": "C.V.M.; George Erskine", "language": "Latin", "published": "1620", "categories": ["alchemy", "hermeticism", "natural-philosophy"], "pages_count": 206, "pages_translated": 201, "reading_summary": { "overview": "This treatise outlines the procedural steps required for the creation of the philosopher's stone. The author, C.V.M., working alongside George Erskine, details the necessary chemical agents and the precise regulation of heat required for successful transmutation." } } }