Calibre
A full-featued Calibre MCP server with granular permissions for read/write/import/etc. Locally tested and freshly released, consider this an alpha. Back your library up before you give an agent write permissions.
What is Calibre?
Calibre is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to full-featued calibre mcp server with granular permissions for read/write/import/etc. locally tested and freshly released, consider this an alpha. back your library up before you give an agent write pe...
A full-featued Calibre MCP server with granular permissions for read/write/import/etc. Locally tested and freshly released, consider this an alpha. Back your library up before you give an agent write permissions.
This server falls under the File Systems category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- A full-featued Calibre MCP server with granular permissions
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx calibre-full-mcp-serverConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Calibre
Calibre Full MCP Server gives AI agents granular read, write, import, export, and format-conversion access to one or more Calibre ebook libraries. Permissions are configured per library so you can safely expose read-only search to an agent while restricting deletion or writing. The server uses calibre-debug worker processes, meaning Calibre itself does not need to be running.
Prerequisites
- Calibre installed on the host system (the calibre-debug binary must be on PATH)
- Python 3.10+ and the uv package manager (pip install uv)
- A valid Calibre library directory containing metadata.db
- A config.json file describing library paths and permissions
- Claude Desktop or another MCP-compatible client
Install the MCP server with uvx
uvx installs and runs the package in an isolated environment without polluting your system Python. This is the recommended approach.
# Install uv if not present
pip install uv
# Run directly from GitHub (no separate install step needed)
uvx --from github.com/FaceDeer/calibre_full_mcp_server calibre-full-mcp --helpCreate the config.json file
The config file defines which libraries to expose and what permissions each has. Set the CALIBREMCP_CONFIGPATH environment variable to its full path.
{
"libraries": [
{
"path": "/home/user/Calibre Library",
"description": "Main ebook collection",
"default": true,
"permissions": {
"read": ["title", "authors", "tags", "series", "series_index", "comments"],
"write": false,
"delete": false,
"convert": false
},
"import": {
"allowed_paths": ["/home/user/Downloads"]
},
"export": {
"allowed_paths": ["/home/user/exports"]
},
"worker_timeout": 300
}
],
"log_level": "info"
}Configure Claude Desktop
Add the server entry to claude_desktop_config.json. The CALIBREMCP_CONFIGPATH environment variable tells the server where to find your config.json.
{
"mcpServers": {
"calibre": {
"command": "uvx",
"args": [
"--from",
"github.com/FaceDeer/calibre_full_mcp_server",
"calibre-full-mcp"
],
"env": {
"CALIBREMCP_CONFIGPATH": "/home/user/.config/calibre-mcp/config.json"
}
}
}
}Back up your library before granting write access
The project README explicitly warns to back up before giving an agent write permissions. Use Calibre's built-in backup or simply copy the library directory.
# Simple directory backup
cp -r "/home/user/Calibre Library" "/home/user/Calibre Library Backup $(date +%Y%m%d)"
# Or use Calibre's built-in backup (from Calibre desktop: Preferences > Backup/Restore)Test a search query
Restart Claude Desktop and ask a basic question to confirm the server is connected and the library is accessible.
Calibre Examples
Client configuration
Full claude_desktop_config.json entry for a read-only library using uvx.
{
"mcpServers": {
"calibre": {
"command": "uvx",
"args": [
"--from",
"github.com/FaceDeer/calibre_full_mcp_server",
"calibre-full-mcp"
],
"env": {
"CALIBREMCP_CONFIGPATH": "/home/user/.config/calibre-mcp/config.json"
}
}
}
}Prompts to try
Natural-language prompts that exercise search, metadata retrieval, and reading.
- "Search my Calibre library for science fiction books tagged 'cyberpunk' and list them with author and series"
- "Find all unread books in my library and sort them by date added"
- "What is the first book in the Expanse series in my library?"
- "Show me the table of contents and first chapter of the book titled Foundation"
- "Import the file /home/user/Downloads/newbook.epub into my library and tag it 'to-read'"Troubleshooting Calibre
calibre-debug not found or 'command not found' error on startup
Calibre must be installed and calibre-debug must be on the PATH visible to the uvx process. On macOS, Calibre.app bundles the binary at /Applications/calibre.app/Contents/MacOS/calibre-debug — add that directory to your PATH or create a symlink in /usr/local/bin.
Server errors when Calibre Desktop is open with the same library
Calibre does not support concurrent access to a single library. Close Calibre Desktop before using the MCP server, or point the MCP server at a different library path.
CALIBREMCP_CONFIGPATH is set but the server cannot find the config file
Use an absolute path, not a path with ~ or relative segments. Verify the file exists and is readable by running: cat $CALIBREMCP_CONFIGPATH
Frequently Asked Questions about Calibre
What is Calibre?
Calibre is a Model Context Protocol (MCP) server that full-featued calibre mcp server with granular permissions for read/write/import/etc. locally tested and freshly released, consider this an alpha. back your library up before you give an agent write permissions. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Calibre?
Follow the installation instructions on the Calibre GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Calibre?
Calibre works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Calibre free to use?
Yes, Calibre is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Calibre Alternatives — Similar File Systems Servers
Looking for alternatives to Calibre? Here are other popular file systems servers you can use with Claude, Cursor, and VS Code.
Electerm
★ 14.1k📻Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win)
Plik
★ 1.8kPlik is a temporary file upload system (Wetransfer like) in Go.
Kordoc
★ 957An MCP server that parses South Korean document formats like HWP, HWPX, and PDF into Markdown. It features specialized table reconstruction and security-hardened extraction optimized for administrative and public institution files.
macOS Automator
★ 801A Model Context Protocol server that enables execution of AppleScript and JavaScript for Automation scripts on macOS, allowing programmatic control of applications and system functions through a rich knowledge base of pre-defined scripts.
PDF Reader
★ 723Enables reading, searching, and metadata extraction from PDF files without loading the entire content into the context window. It provides efficient tools for text cleaning, page-specific extraction, and context-aware search results.
Filesystem MCP Server
★ 643Provides comprehensive filesystem operations (read, write, list, create, delete, move files and directories) through the Model Context Protocol with Streamable HTTP transport and built-in security through configurable root directory restrictions.
Browse More File Systems MCP Servers
Explore all file systems servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Calibre in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Calibre?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.