Skip to main content

Model Context Protocol (MCP) server for Apple Books

Project description

Apple Books MCP

Model Context Protocol (MCP) server for Apple Books.

PyPI License: Apache 2.0 Buy Me A Coffee

At a glance

  • Ask Claude to summarize your recent highlights
  • Ask Claude what books you're currently reading and your progress
  • Ask Claude to pick up where you left off — it can see the chapter you're on and its text
  • Ask Claude to find a book by title
  • Ask Claude to organize books in your library by genre
  • Ask Claude to recommend similar books based on your reading history
  • Ask Claude to compare notes from different books read on the same subject

https://github.com/user-attachments/assets/77a5a29b-bfd7-4275-a4af-8d6c51a4527e

And much more!

Available Tools

Collections

Tool Description Parameters
list_all_collections List all collections limit?: int
get_collection_books Get all books in a collection collection_id: str
describe_collection Get details of a collection collection_id: str
search_collections_by_title Search for collections by title title: str

Books

Tool Description Parameters
list_all_books List all books limit?: int
describe_book Get details of a particular book (metadata, progress, annotation count, description) book_id: str
list_annotations Get all annotations for a book (id + text + chapter per row, chapter-ordered) book_id: int, limit?: int
search_books_by_title Search for books by title title: str
get_books_by_genre Get books by genre (substring match) genre: str, limit?: int

Reading Status

Tool Description Parameters
get_books_in_progress Get books currently being read limit?: int
get_finished_books Get books that have been finished limit?: int
get_unstarted_books Get books not yet started limit?: int
get_recently_read_books Get most recently opened books limit?: int (default: 10)

Annotations

Tool Description Parameters
list_all_annotations Browse every annotation grouped by book, newest first limit?: int
recent_annotations Get most recent annotations (flat, with date + book per row) limit?: int (default: 10)
describe_annotation Get full details of a single annotation annotation_id: str
get_annotation_context Text window around a highlight (the paragraph it's in), with the highlight marked «...» annotation_id: int, chars_before?: int (default: 500), chars_after?: int (default: 500)
get_highlights_by_color Highlights of a particular color, grouped by book color: str, limit?: int
search_notes Search user notes (shows highlight + note inline) note: str, limit?: int
search_annotations Search across highlights + notes + surrounding text text: str, limit?: int
get_annotations_by_date_range Annotations within a date range (flat, with date + book per row) after?: YYYY-MM-DD, before?: YYYY-MM-DD, limit?: int

Library Stats

Tool Description Parameters
get_library_stats Get library summary with reading stats None

Book Content

Only works for non-DRM EPUBs (imported books, Project Gutenberg, Standard Ebooks, etc.). Apple Books Store purchases are FairPlay-protected and return a clear error. iCloud-only books return a "not downloaded" hint.

Tool Description Parameters
list_book_chapters Table of contents for a book (chapter titles, order, nesting) book_id: int
get_chapter_content Plain-text content of a chapter, with optional offset + max_chars slicing book_id: int, chapter_id: str, offset?: int, max_chars?: int
get_current_reading_position The chapter the user last left off reading (via Apple Books' auto-bookmark CFI) book_id: int

Available Resources

Attachable data objects accessible from Claude Desktop's resource picker.

Resource URI Description
Currently Reading apple-books://currently-reading The book you're reading right now — most recently opened in-progress book, with metadata, the chapter you left off on plus a preview of its text (for non-DRM EPUBs), and recent annotations. Attach to any conversation to focus Claude on your current read.

Available Prompts

One-click workflows, accessible from Claude Desktop's prompt picker.

Prompt Description Arguments
weekly_digest Summarize what I've read and highlighted in the past week days?: int (default: 7)
explain_recent_highlight Take my most recent highlight and explain what it means None
what_am_i_reading Quick snapshot of books I'm currently in the middle of None
library_snapshot A reflection on my whole reading life None
revisit_book Revisit your notes and highlights from a specific book book_title: str

Installation

Using uv (recommended)

uvx can be used to directly run apple-books-mcp (without installing it).

brew install uv  # for macos
uvx apple-books-mcp

Using pip

pip install apple-books-mcp

After installing, you can run the server using:

python -m apple_books_mcp

Using Docker

docker run -v ~/Library/Containers/com.apple.iBooksX/Data/Documents:/root/Library/Containers/com.apple.iBooksX/Data/Documents:ro ghcr.io/vgnshiyer/apple-books-mcp:latest

Configuration

Claude Desktop Setup

Using uvx (recommended)

{
    "mcpServers": {
        "apple-books-mcp": {
            "command": "uvx",
            "args": [ "apple-books-mcp@latest" ]
        }
    }
}

Using python

{
    "mcpServers": {
        "apple-books-mcp": {
            "command": "python",
            "args": ["-m", "apple_books_mcp"]
        }
    }
}

Using Docker

{
    "mcpServers": {
        "apple-books-mcp": {
            "command": "docker",
            "args": [
                "run", "-i", "--rm",
                "-v", "~/Library/Containers/com.apple.iBooksX/Data/Documents:/root/Library/Containers/com.apple.iBooksX/Data/Documents:ro",
                "ghcr.io/vgnshiyer/apple-books-mcp:latest"
            ]
        }
    }
}

Upcoming Features

  • PDF content access (currently EPUB-only)
  • fuller annotation context via CFI → paragraph resolution

Contribution

Thank you for considering contributing to this project!

Development

If you cloned this repository, you can test it using Claude Desktop with below configuration:

Use uv venv to create a virtual environment and install the dependencies.

uv venv
uv sync

Debugging

With Claude Desktop

{
    "mcpServers": {
        "apple-books-mcp": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/apple-books-mcp/",
                "run",
                "apple_books_mcp",
                "-v"
            ]
        }
    }
}

With inspector

npx @modelcontextprotocol/inspector uvx apple-books-mcp

Opening Issues

If you encounter a bug, have a feature request, or want to discuss something related to the project, please open an issue on the GitHub repository. When opening an issue, please provide:

Bug Reports: Describe the issue in detail. Include steps to reproduce the bug if possible, along with any error messages or screenshots.

Feature Requests: Clearly explain the new feature you'd like to see added to the project. Provide context on why this feature would be beneficial.

General Discussions: Feel free to start discussions on broader topics related to the project.

Contributing

1️⃣ Fork the GitHub repository https://github.com/vgnshiyer/apple-books-mcp
2️⃣ Create a new branch for your changes (git checkout -b feature/my-new-feature).
3️⃣ Make your changes and test them thoroughly.
4️⃣ Push your changes and open a Pull Request to main.

Please provide a clear title and description of your changes.

License

Apple Books MCP is licensed under the Apache 2.0 license. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

apple_books_mcp-0.7.0.tar.gz (29.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

apple_books_mcp-0.7.0-py3-none-any.whl (24.5 kB view details)

Uploaded Python 3

File details

Details for the file apple_books_mcp-0.7.0.tar.gz.

File metadata

  • Download URL: apple_books_mcp-0.7.0.tar.gz
  • Upload date:
  • Size: 29.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for apple_books_mcp-0.7.0.tar.gz
Algorithm Hash digest
SHA256 280aea1ddfd74fc67b231666b84e1a327c81784ae7a129e3a14dddc2d17c102d
MD5 e23764b6ff838d08777af1019f703f85
BLAKE2b-256 6fbd16d363fb7e2cd7cf053cf0f213acde3d76e26c03372ace9781a02dfc8076

See more details on using hashes here.

Provenance

The following attestation bundles were made for apple_books_mcp-0.7.0.tar.gz:

Publisher: publish.yml on vgnshiyer/apple-books-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apple_books_mcp-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: apple_books_mcp-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for apple_books_mcp-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0582d19c23ec8928c478c4b96d292edb9c9caf8acb96bf94e23e6a1021237010
MD5 d0766a7b4216c28ae8c01d0eab63beb0
BLAKE2b-256 2eb3a934efed43a758f1ad4c0da48732088873f977df278f973fc0389c935e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for apple_books_mcp-0.7.0-py3-none-any.whl:

Publisher: publish.yml on vgnshiyer/apple-books-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page