書本管理工具(5 個)
閱讀約 4 分鐘
5 個用來操作「書本層」(一本書整體屬性、結構、統計)的 MCP tools。

1 · create_book
建一本新書。
輸入:
title: string(必)type: enum(必)—— novel / biography / business / technical / motivational / generaldescription: string(選)target_word_count: int(選)
回傳:
book_token: 這本書的內部 tokenslug、title、type、folder_template
詳見:建立新書
2 · list_books
列出帳號下所有書。
輸入:
status: enum(選)—— active / archived / trashed / all(預設 active)studio: enum(選)—— writing / script(預設兩個都列)
回傳:
- 每本書的
book_token/title/type/studio/last_edited_at
3 · get_book
拿單本書的詳細資料。
輸入:
book_token: string(必)
回傳:
- Title / description / type / studio / target / current word count
- BookPhase(planning / draft / editing / done)
4 · get_book_structure
拿這本書的檔案樹結構。
輸入:
book_token: string(必)
回傳:
- 樹狀結構:每個 folder / file 的 path、type(manuscript / reference)
非常適合 AI 先了解書的組織再開始工作。
5 · get_writing_stats
寫作數據統計。
輸入:
book_token: string(必)range: enum(選)—— today / week / month / all
回傳:
- 字數變化、編輯次數、AI Coach 對話數、版本建立數
- 對應到 動力系統
範例對話(Claude)
你:列出我所有 active 的書。
Claude(呼叫 list_books):你有 3 本——《海邊的燈塔人》、《劇本草稿 X》、《商業書 Y》。
相關
這篇有幫助嗎?