@shuji-bonji/pdf-reader-mcp 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.ja.md +2 -2
- package/README.md +2 -2
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.2] - 2026-04-18
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **README**: Fixed broken link to pdf-spec-mcp. The `nicholasgriffintn/pdf-spec-mcp` URL in previous versions was erroneous (that repository does not exist); now correctly points to [`shuji-bonji/pdf-spec-mcp`](https://github.com/shuji-bonji/pdf-spec-mcp) — the companion MCP server providing ISO 32000 PDF specification knowledge.
|
|
13
|
+
- Restored the "Pairing with pdf-spec-mcp" section in both `README.md` and `README.ja.md` with the corrected link.
|
|
14
|
+
- **`src/index.ts`**: Restored header comment describing pairing with pdf-spec-mcp.
|
|
15
|
+
|
|
8
16
|
## [0.2.1] - 2026-04-18
|
|
9
17
|
|
|
10
18
|
### Changed
|
|
@@ -49,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
49
57
|
- Y-coordinate-based text extraction preserving natural reading order
|
|
50
58
|
- Unit tests for core utilities and pdfjs-service
|
|
51
59
|
|
|
60
|
+
[0.2.2]: https://github.com/shuji-bonji/pdf-reader-mcp/compare/v0.2.1...v0.2.2
|
|
52
61
|
[0.2.1]: https://github.com/shuji-bonji/pdf-reader-mcp/compare/v0.2.0...v0.2.1
|
|
53
62
|
[0.2.0]: https://github.com/shuji-bonji/pdf-reader-mcp/compare/v0.1.0...v0.2.0
|
|
54
63
|
[0.1.0]: https://github.com/shuji-bonji/pdf-reader-mcp/releases/tag/v0.1.0
|
package/README.ja.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
PDF 内部構造解析に特化した MCP (Model Context Protocol) サーバー。
|
|
10
10
|
|
|
11
|
-
既存の pdf-reader-mcp がテキスト抽出の薄いラッパーに留まるのに対し、本プロジェクトは **PDF の内部構造を読み解く** ことに焦点を当てています。[pdf-spec-mcp](https://github.com/
|
|
11
|
+
既存の pdf-reader-mcp がテキスト抽出の薄いラッパーに留まるのに対し、本プロジェクトは **PDF の内部構造を読み解く** ことに焦点を当てています。[pdf-spec-mcp](https://github.com/shuji-bonji/pdf-spec-mcp) と組み合わせることで、仕様知識に基づいた構造解析・検証が可能になります。
|
|
12
12
|
|
|
13
13
|
## 機能
|
|
14
14
|
|
|
@@ -193,7 +193,7 @@ pdf-reader-mcp/
|
|
|
193
193
|
|
|
194
194
|
## pdf-spec-mcp との連携
|
|
195
195
|
|
|
196
|
-
[pdf-spec-mcp](https://github.com/
|
|
196
|
+
[pdf-spec-mcp](https://github.com/shuji-bonji/pdf-spec-mcp) は PDF 仕様(ISO 32000-2 等)の知識を提供する MCP サーバーです。両方を有効にすることで、LLM は以下のような仕様知識ベースのワークフローを実行できます:
|
|
197
197
|
|
|
198
198
|
1. `summarize` で PDF の概要を把握
|
|
199
199
|
2. `inspect_tags` でタグ構造を確認
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
An MCP (Model Context Protocol) server specialized in **deciphering PDF internal structures**.
|
|
10
10
|
|
|
11
|
-
While typical PDF MCP servers are thin wrappers for text extraction, this project focuses on **reading and analyzing the internal structure** of PDF documents. Pair it with [pdf-spec-mcp](https://github.com/
|
|
11
|
+
While typical PDF MCP servers are thin wrappers for text extraction, this project focuses on **reading and analyzing the internal structure** of PDF documents. Pair it with [pdf-spec-mcp](https://github.com/shuji-bonji/pdf-spec-mcp) for specification-aware structural analysis and validation.
|
|
12
12
|
|
|
13
13
|
## Features
|
|
14
14
|
|
|
@@ -193,7 +193,7 @@ pdf-reader-mcp/
|
|
|
193
193
|
|
|
194
194
|
## Pairing with pdf-spec-mcp
|
|
195
195
|
|
|
196
|
-
[pdf-spec-mcp](https://github.com/
|
|
196
|
+
[pdf-spec-mcp](https://github.com/shuji-bonji/pdf-spec-mcp) provides PDF specification knowledge (ISO 32000-2, etc.). With both servers enabled, an LLM can perform specification-aware workflows:
|
|
197
197
|
|
|
198
198
|
1. `summarize` — get a PDF overview
|
|
199
199
|
2. `inspect_tags` — examine the tag structure
|
package/dist/constants.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export declare const MAX_SEARCH_RESULTS = 100;
|
|
|
13
13
|
export declare const DEFAULT_SEARCH_CONTEXT = 80;
|
|
14
14
|
/** Server info */
|
|
15
15
|
export declare const SERVER_NAME = "pdf-reader-mcp";
|
|
16
|
-
export declare const SERVER_VERSION = "0.2.
|
|
16
|
+
export declare const SERVER_VERSION = "0.2.2";
|
|
17
17
|
/** Response format enum */
|
|
18
18
|
export declare enum ResponseFormat {
|
|
19
19
|
MARKDOWN = "markdown",
|
package/dist/constants.js
CHANGED
|
@@ -13,7 +13,7 @@ export const MAX_SEARCH_RESULTS = 100;
|
|
|
13
13
|
export const DEFAULT_SEARCH_CONTEXT = 80;
|
|
14
14
|
/** Server info */
|
|
15
15
|
export const SERVER_NAME = 'pdf-reader-mcp';
|
|
16
|
-
export const SERVER_VERSION = '0.2.
|
|
16
|
+
export const SERVER_VERSION = '0.2.2';
|
|
17
17
|
/** Response format enum */
|
|
18
18
|
export var ResponseFormat;
|
|
19
19
|
(function (ResponseFormat) {
|