pdf-chapter-splitter
An MCP server that splits PDFs by chapters/sections and reads them in Claude-friendly chunks. Enables structured reading of large PDF documents.
README
pdf-chapter-splitter
An MCP (Model Context Protocol) server that splits PDFs by chapters/sections and reads them in Claude-friendly chunks. Designed for use with Claude Code to enable structured reading of large PDF documents.
PDFをチャプター単位で分割し、Claudeが扱いやすいサイズで読み込めるMCPサーバーです。Claude Codeと組み合わせて、大きなPDFの構造化された読み込みを実現します。
How it works / 仕組み
[You / ユーザー] → provide a PDF file path / PDFファイルパスを指定
↓
[pdf-chapter-splitter MCP] → analyze structure & extract text / 構造解析&テキスト抽出
↓
[Claude Code] ← receives chapter text + metadata / チャプターテキスト+メタデータで返却 → analyzes content / 内容を分析
Prerequisites / 前提条件
- Node.js >= 18
No external binaries required. Uses pdfjs-dist (pure JavaScript).
外部バイナリは不要です。pdfjs-dist(ピュアJavaScript)で動作します。
Installation / インストール
Claude Code CLI (Recommended / 推奨)
claude mcp add pdf-chapter-splitter -- npx -y pdf-chapter-splitter
This registers the MCP server with Claude Code. No manual configuration needed.
npx (Direct execution / 直接実行)
npx -y pdf-chapter-splitter
Manual installation / 手動インストール
git clone https://github.com/keigoly/pdf-chapter-splitter.git
cd pdf-chapter-splitter
npm install
npm run build
If you installed manually, add the following to your .mcp.json (project-level) or ~/.claude/settings.json (global):
{
"mcpServers": {
"pdf-chapter-splitter": {
"command": "node",
"args": ["/path/to/pdf-chapter-splitter/dist/index.js"]
}
}
}
Tools / ツール
get_pdf_info
Get PDF metadata (title, author, page count, file size).
| Parameter | Type | Description |
|---|---|---|
file_path |
string (required) | Absolute path to the PDF file |
get_toc
Extract table of contents (bookmarks/outline) from a PDF. Returns hierarchical chapter structure with page numbers.
| Parameter | Type | Description |
|---|---|---|
file_path |
string (required) | Absolute path to the PDF file |
list_chapters
List chapters/sections detected from the PDF. Uses TOC if available, otherwise splits by pages.
| Parameter | Type | Default | Description |
|---|---|---|---|
file_path |
string (required) | - | Absolute path to the PDF file |
level |
number (optional) | top-level only | Max TOC depth level to include (0=top level only) |
read_chapter
Read the text content of a specific chapter by its index (from list_chapters).
| Parameter | Type | Description |
|---|---|---|
file_path |
string (required) | Absolute path to the PDF file |
chapter_index |
number (required) | Chapter index from list_chapters output |
level |
number (optional) | Max TOC depth level (must match list_chapters) |
read_pages
Read text content from a specific page range.
| Parameter | Type | Description |
|---|---|---|
file_path |
string (required) | Absolute path to the PDF file |
start_page |
number (required) | Start page number (1-based) |
end_page |
number (required) | End page number (1-based, inclusive) |
detect_headings
Detect heading candidates by analyzing font sizes. Useful for PDFs without TOC/bookmarks.
| Parameter | Type | Description |
|---|---|---|
file_path |
string (required) | Absolute path to the PDF file |
3-level fallback strategy / 3段階フォールバック
- TOC/Bookmarks → Use as chapter structure / そのままチャプター構造として利用
- Font size analysis → Detect headings from larger text / フォントサイズからヘディング検出
- Auto-split → Split every 20 pages / 20ページ単位で自動分割
Constraints / 制約
| Item | Limit |
|---|---|
| Supported format | .pdf |
| Max response size | 200,000 chars / 1,800 lines |
| Auto-split chunk | 20 pages |
| External deps | None (pdfjs-dist only) |
Use cases / ユースケース
- Structured reading: Read technical books chapter by chapter / 技術書をチャプターごとに読む
- Document review: Review specific sections of specs or reports / 仕様書やレポートの特定セクションをレビュー
- Paper analysis: Analyze academic papers section by section / 学術論文をセクション単位で分析
- Cross-PDF search: Get TOCs from multiple PDFs to find relevant chapters / 複数PDFの目次から関連章を検索
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。