Labsco
vgnshiyer logo

Apple Books

โ˜… 52

from vgnshiyer

Access and manage your library on Apple Books.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

Apple Books MCP

Model Context Protocol (MCP) server for Apple Books.

Website PyPI License: Apache 2.0 Buy Me A Coffee

At a glance

  • Pick up where you left off โ€” Claude sees the chapter you're on and its text, plus recent highlights in the book.
  • Expand on any highlight โ€” get the surrounding paragraph explained in context, with the exact anchor you marked shown in ยซ...ยป.
  • Revisit a book โ€” pull your highlights, cluster them by theme, and quote you back to yourself.
  • Reflect on your reading โ€” patterns across books, recurring ideas in your highlights, what you're actually drawn to.

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

And much more!

Available Tools

Collections

ToolDescriptionParameters
list_all_collectionsList all collectionslimit?: int
get_collection_booksGet all books in a collectioncollection_id: str
describe_collectionGet details of a collectioncollection_id: str
search_collections_by_titleSearch for collections by titletitle: str

Editing collections (opt-in)

Off by default. Enable by adding --enable-writes to the server args:

"args": ["apple-books-mcp@latest", "--enable-writes"]

Apple provides no automation API for collections, so these write directly to the library database โ€” behind guard rails: every write refuses while Books is open, takes an automatic WAL-safe backup first (~/.py_apple_books/backups/), validates the schema and aborts on drift, and only touches user-created collections (plus "Want to Read" membership). Deleting a collection never deletes the books in it.

โš ๏ธ If iCloud sync for collections is enabled, direct edits may not propagate to other devices and can be reverted by a cloud re-sync.

ToolDescriptionParameters
create_collectionCreate a new collectiontitle: str, details?: str
rename_collectionRename a user-created collectioncollection_id: int, new_title: str
delete_collectionDelete a user-created collection (books untouched)collection_id: int
add_book_to_collectionAdd a book to a collection (idempotent)collection_id: int, book_id: int
remove_book_from_collectionRemove a book from a collection (idempotent)collection_id: int, book_id: int

Books

ToolDescriptionParameters
list_all_booksList all bookslimit?: int
describe_bookGet details of a particular book (metadata, progress, annotation count, description)book_id: str
list_annotationsGet all annotations for a book (id + text + chapter per row, chapter-ordered)book_id: int, limit?: int
search_books_by_titleSearch for books by titletitle: str
get_books_by_genreGet books by genre (substring match)genre: str, limit?: int

Reading Status

ToolDescriptionParameters
get_books_in_progressGet books currently being readlimit?: int
get_finished_booksGet books that have been finishedlimit?: int
get_unstarted_booksGet books not yet startedlimit?: int
get_recently_read_booksGet most recently opened bookslimit?: int (default: 10)

Annotations

ToolDescriptionParameters
list_all_annotationsBrowse every annotation grouped by book, newest firstlimit?: int
recent_annotationsGet most recent annotations (flat, with date + book per row)limit?: int (default: 10)
describe_annotationGet full details of a single annotationannotation_id: str
get_annotation_contextText 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_colorHighlights of a particular color, grouped by bookcolor: str, limit?: int
search_notesSearch user notes (shows highlight + note inline)note: str, limit?: int
search_annotationsSearch across highlights + notes + surrounding texttext: str, limit?: int
get_annotations_by_date_rangeAnnotations within a date range (flat, with date + book per row)after?: YYYY-MM-DD, before?: YYYY-MM-DD, limit?: int

Library Stats

ToolDescriptionParameters
get_library_statsGet library summary with reading statsNone

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.

ToolDescriptionParameters
list_book_chaptersTable of contents for a book (chapter titles, order, nesting)book_id: int
get_chapter_contentPlain-text content of a chapter, with optional offset + max_chars slicingbook_id: int, chapter_id: str, offset?: int, max_chars?: int
get_current_reading_positionThe 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.

ResourceURIDescription
Currently Readingapple-books://currently-readingThe 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.

PromptDescriptionArguments
weekly_digestSummarize what I've read and highlighted in the past weekdays?: int (default: 7)
library_snapshotA reflection on my whole reading lifeNone
revisit_bookRevisit your notes and highlights from a specific bookbook_title: str

First-run permission prompt (macOS)

On first use, macOS will ask whether uvx (or python / docker, depending on how you launched) may "access data from other apps." Click Allow โ€” the MCP reads Apple Books' private container at ~/Library/Containers/com.apple.iBooksX/, which macOS treats as another app's sandboxed data. Access is read-only and scoped to that container; the server starts successfully either way, but without permission every tool comes back empty.

macOS permission prompt: uvx would like to access data from other apps. Don't Allow / Allow.

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.