From calibre-mcp
Searches Calibre library by meaning using LanceDB for hybrid keyword+vector search over metadata. Supports full-text RAG retrieval from ebook contents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/calibre-mcp:semantic_searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Description:** Find books by meaning using LanceDB over title, authors, tags, comments, and series. Supports hybrid keyword + vector search across your entire Calibre library.
Description: Find books by meaning using LanceDB over title, authors, tags, comments, and series. Supports hybrid keyword + vector search across your entire Calibre library.
calibre_metadata_index_build() — Build or rebuild the LanceDB metadata index. Run once per library or after large batch imports.calibre_metadata_search(query="...", top_k=10) — Natural-language semantic search over book metadata. Returns ranked results with relevance scores.rag_index_build() — Build full-text content index from ebook text (requires epub/mobi extraction).rag_retrieve(query="...", top_k=5) — Semantic search over full book contents, not just metadata.search_fulltext(query="...") — Legacy full-text search with exact phrase matching and boolean operators.query_books(search="...", tags=[...], authors=[...]) — Structured metadata filtering with AND/OR logic.calibre_metadata_index_build() first (runs async, takes 1-5 min per 1000 books).calibre_metadata_search() for broad semantic queries. Combine with top_k to control result breadth.query_books() using author, tag, or series filters.rag_retrieve() to search inside book text. Caveat: works best on epub format.search_fulltext — "machine learning"search_fulltext(query="python AND (data science OR ML)")query_books(tags=["python", "tutorial"], limit=20)query_books(added_since="2024-01-01")calibre_metadata_search(query="programming Python data science")rag_retrieve(query="gradient descent", top_k=5)calibre_metadata_search(query="sci-fi AI consciousness") then filter with query_books(tags=["science fiction"])npx claudepluginhub sandraschi/calibremcpChains multiple CalibreMCP tools for automated ebook library workflows including discovery, search, metadata management, batch processing, and import pipelines.
Semantic search across indexed knowledge bases using Qdrant vector similarity. Returns ranked results with source metadata for citation. Used by librarian agent for research queries.
Search Readwise highlights and documents using vector search, full-text filters, and keyword exact match. Provides commands for highlight and document search via official and custom CLIs.