使用手冊 › Slima MCP › 書本管理工具(5 個)
書本管理工具(5 個)
最後更新 2026 年 5 月 14 日 · 閱讀約 4 分鐘
5 個用來操作「書本層」(一本書整體屬性、結構、統計)的 MCP tools。

1 · create_book
建一本新書。
輸入:
title: string(必)type: enum(必)—— novel / biography / business / technical / motivational / generaldescription: string(選)target_word_count: int(選)
回傳:
book_token:這本書的內部識別碼- 以及
slug、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(必)
回傳:
- 書名、描述、類型、所屬工作室、目標字數、目前字數
- 書本階段(
planning規劃 /draft草稿 /editing編輯 /done完成)
4 · get_book_structure
拿這本書的檔案樹結構。
輸入:
book_token: string(必)
回傳:
- 樹狀結構:每個資料夾與檔案的路徑、類型(
manuscript正文 /reference參考資料)
很適合讓 AI 在動工前先摸清楚整本書的組織方式。
5 · get_chapter
讀取某一章的完整內容。
輸入:
book_token: string(必)- 章節識別(路徑 / id)
回傳:
- 該章的完整 markdown 內容 + 字數等 metadata
跟 read_file 類似,但以「章節」為單位、會一併回傳章節層級的統計,適合 AI 要針對某一章工作時。
6 · get_writing_stats
寫作數據統計。
輸入:
book_token: string(必)range: enum(選)—— today / week / month / all
回傳:
- 字數變化、編輯次數、AI 寫作教練 對話數、版本建立數
- 對應到 動力系統
範例對話(Claude)
你:列出我所有進行中的書。
Claude(呼叫 list_books):你有 3 本——《海邊的燈塔人》、《劇本草稿 X》、《商業書 Y》。
相關
這篇有幫助嗎?