Book management tools (5)
قراءة 4 دقيقة
Five MCP tools that operate at the book level (book metadata, structure, stats).

1 · create_book
Create a new book.
Input:
title: string (required)type: enum (required) — novel / biography / business / technical / motivational / generaldescription: string (optional)target_word_count: int (optional)
Returns:
book_token: internal token for this bookslug,title,type,folder_template
See: Create a book
2 · list_books
List all books on your account.
Input:
status: enum (optional) — active / archived / trashed / all (default active)studio: enum (optional) — writing / script (default: both)
Returns:
- Per book:
book_token/title/type/studio/last_edited_at
3 · get_book
Detailed info on one book.
Input:
book_token: string (required)
Returns:
- Title / description / type / studio / target / current word count
- BookPhase (planning / draft / editing / done)
4 · get_book_structure
The file tree of a book.
Input:
book_token: string (required)
Returns:
- Tree: each folder / file with path and type (manuscript / reference)
Great for "let me understand the structure first" before AI starts work.
5 · get_writing_stats
Writing stats.
Input:
book_token: string (required)range: enum (optional) — today / week / month / all
Returns:
- Word change, edit count, AI Coach chat count, versions created
- Mirrors the motivation system
Example (Claude)
You: list all my active books.
Claude (calls list_books): You have 3 — *The Lighthouse Keeper*, *Script draft X*, *Business book Y*.
Related
Was this helpful?