access-calibre
Click on "Install 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., "@access-calibresearch for books by author Asimov"
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.
access-calibre
This package has been entirely vibe-coded by Junie in JetBrains IntelliJ and not human checked.
A JavaScript library to connect to a local Calibre Content Server and grab portions of ebooks.

You will need to have a Calibre Content Server running locally. Start one by running calibre and choosing the "Connect/share" option.
MCP Server
This library includes an MCP (Model Context Protocol) server that allows LLMs to interact with your Calibre library.
Tools Provided:
list_libraries: List available libraries.search_books: Search for books using Calibre's search syntax (e.g. by title, author: "author:Asimov").list_books: List all books in a library.list_chapters: List the chapters of a book in reading order.get_chapter_content: Retrieve the HTML content of a specific chapter.get_chapter_content_markdown: Retrieve the content of a specific chapter converted to Markdown (generally better for LLMs).render_chapter_page: Render a specific page of a chapter as a PNG image (useful for LLMs with vision capabilities). It also returns the total number of pages in the chapter.get_book_cover: Retrieve the cover image of a book as a PNG image.search_in_book: Search for specific literal text within a book and get snippets of occurrences. Note: ONLY supports simple literal string matching, NO boolean operators (AND/OR) or quotes.get_epub_file: Retrieve any file from the EPUB (e.g. CSS, images).


Configuration
The MCP server can be configured via environment variables:
CALIBRE_URL: The URL of your Calibre Content Server (default:http://[::1]:8080/).CALIBRE_USERNAME: Optional username for authentication.CALIBRE_PASSWORD: Optional password for authentication.
Running the MCP Server
Logging
You can enable detailed logging of all requests and responses by providing the --verbose (or -v) argument:
npx access-calibre --verboseLogs are written to stderr so they don't interfere with the MCP protocol.
If you want to direct logs to a file, you can use the --log-file argument:
npx access-calibre --log-file=server.logYou can combine both to see logs in stderr and save them to a file:
npx access-calibre --verbose --log-file=server.logClaude Desktop
You can run the MCP server directly using npx (useful for Claude Desktop or other MCP clients):
npx access-calibreLM Studio
To use this MCP server in LM Studio:
Open LM Studio.
Click on the Tools icon (puzzle piece) in the left sidebar.
Click + Add Tool.
Choose MCP Server.
Give it a name (e.g.,
access-calibre).For Command, enter
npx.For Arguments, enter
access-calibre.Add any required environment variables (like
CALIBRE_URL) in the Environment Variables section.Click Add Tool.
Alternatively, you can add it to your mcp-config.json (usually found in ~/.lmstudio/mcp-config.json):
{
"mcpServers": {
"access-calibre": {
"command": "npx",
"args": ["access-calibre"],
"env": {
"CALIBRE_URL": "http://localhost:8080/"
}
}
}
}Local Installation
npm run start:mcpOr directly via Node:
CALIBRE_URL=http://localhost:8080 node mcp-server.jsRelated MCP server: mcp-docs
Library Installation
To use it as a library in your project:
npm install access-calibreUsage
You can use it as a library in your project:
const CalibreClient = require('access-calibre');
const client = new CalibreClient('http://localhost:8080', 'username', 'password');
async function example() {
// List libraries
const libraries = await client.getLibraries();
const libraryId = Object.keys(libraries)[0];
// List books
const books = await client.getBooks(libraryId);
// Get EPUB contents
const bookId = books.book_ids[0];
const files = await client.getEpubContents(libraryId, bookId);
console.log('Files in EPUB:', files);
// Get a specific file (e.g., a chapter) from the EPUB
const html = await client.getEpubFile(libraryId, bookId, 'index_split_001.html');
console.log(html);
}API
new CalibreClient(baseUrl, username, password)
Initialize the client.
client.getLibraries()
Returns an object containing information about available libraries, including book counts.
client.getBooks(libraryId, limit, offset, search)
Returns a list of book IDs and their metadata for the specified library. search is an optional search query string in Calibre's search syntax.
client.getBookMetadata(libraryId, bookId)
Returns detailed metadata for a specific book.
client.downloadBook(libraryId, bookId, format)
Downloads the book in the specified format (e.g., 'EPUB', 'PDF') and returns a Buffer.
client.getEpubContents(libraryId, bookId)
Returns a list of file paths inside the EPUB file.
client.getTOC(libraryId, bookId)
Returns an array of { title, path } objects representing the book's Table of Contents.
client.getChapters(libraryId, bookId)
Returns an array of { title, path, size } objects representing the book's chapters in their linear reading order (as defined in the EPUB spine). size is the uncompressed size of the chapter file in bytes.
client.getChapterContentMarkdown(libraryId, bookId, chapterPath)
Returns the content of a specific chapter converted to Markdown.
client.searchText(libraryId, bookId, query, snippetWindow)
Searches for query text within the book. Returns an array of { chapterTitle, chapterPath, offset, snippet, markdownOffset, markdownSnippet } objects. snippetWindow (default 100) is the number of characters to include before and after the match in the snippet. markdownOffset and markdownSnippet are provided for use with Markdown-based tools.
client.getEpubFile(libraryId, bookId, filePath, responseType)
Extracts a specific file from the EPUB and returns its content as a string (default) or Buffer (if responseType is 'buffer').
Scripts
get-chapter.js
Extracts the XML/HTML content of a chapter to the console.
node get-chapter.js <book_id_or_title> <chapter_index_or_title>render-chapter.js
Renders a specific page from a chapter to a PNG image using Playwright.
node render-chapter.js <book_id_or_title> <chapter_index_or_title> [output.png] [--page <number>]--page <number>: Optional. Specifies which page of the chapter to render (default is 1).If no output filename is provided, it defaults to
chapter_render.png.
Note: You may need to run npx playwright install chromium before using this script.
Running Tests
npm testThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceAn MCP server that enables querying and managing Calibre libraries via chat by interacting with the Calibre content server over HTTP. It allows users to search for books, update metadata, manage authors and tags, and handle book file uploads or conversions.Last updatedBSD 3-Clause
- Alicense-qualityDmaintenanceGeneric MCP server that exposes Markdown documentation to LLMs, enabling them to search and answer questions about any software documentation.Last updatedMIT
- AlicenseAqualityCmaintenanceAn MCP server to manage and organize a Calibre ebook library, enabling metadata editing, search, conversion, and more through AI assistants.Last updated174MIT
- AlicenseBqualityBmaintenanceA local MCP server that lets LLM agents read EPUB books and PDF documents with outline-first navigation, precise node reads, and local SQLite persistence.Last updated291MIT
Related MCP Connectors
MCP server for Project Gutenberg — 75,000+ public-domain ebooks with full plain-text retrieval.
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/caplin-adam/access-calibre'
If you have feedback or need assistance with the MCP directory API, please join our Discord server