@noedgeai-org/doc2x-mcp 0.1.4-dev.9.1 → 0.1.5

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/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Doc2x MCP Server
2
2
 
3
+ <p align="center">
4
+ <img src="./icon_rounded.png" width="120" alt="Doc2x MCP"/>
5
+ </p>
6
+
3
7
  [![CI](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/ci.yml)
4
8
  [![Publish](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/publish.yml/badge.svg)](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/publish.yml)
5
9
  [![npm version](https://img.shields.io/npm/v/%40noedgeai-org%2Fdoc2x-mcp)](https://www.npmjs.com/package/@noedgeai-org/doc2x-mcp)
@@ -22,6 +26,7 @@
22
26
  - [安装本仓库 Skill(可选)](#安装本仓库-skill可选)
23
27
  - [安全与排错](#安全与排错)
24
28
  - [问题反馈](#问题反馈)
29
+ - [Changelog](./CHANGELOG.md)
25
30
  - [License](#license)
26
31
 
27
32
  ## 项目定位
@@ -214,7 +219,9 @@ pnpm audit --prod --audit-level high
214
219
 
215
220
  ## 安装本仓库 Skill(可选)
216
221
 
217
- 用于给 Codex CLI / Claude Code 增加一个“教大模型如何使用 doc2x-mcp tools 的 Skill”。
222
+ 用于给 Codex CLI / Claude Code 增加一个"教大模型如何使用 doc2x-mcp tools 的 Skill"。
223
+
224
+ > **提示:** 每次升级 `doc2x-mcp` 版本后,建议重新运行安装命令以更新 Skill,确保大模型使用最新的 tool 描述与工作流。
218
225
 
219
226
  不需要 clone 仓库的一键安装(推荐):
220
227
 
package/README_EN.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Doc2x MCP Server
2
2
 
3
+ <p align="center">
4
+ <img src="./icon_rounded.png" width="120" alt="Doc2x MCP"/>
5
+ </p>
6
+
3
7
  [![CI](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/ci.yml)
4
8
  [![Publish](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/publish.yml/badge.svg)](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/publish.yml)
5
9
  [![npm version](https://img.shields.io/npm/v/%40noedgeai-org%2Fdoc2x-mcp)](https://www.npmjs.com/package/@noedgeai-org/doc2x-mcp)
@@ -22,6 +26,7 @@ A stdio-based MCP Server that wraps Doc2x v2 PDF/image capabilities into stable,
22
26
  - [Install Repo Skill (Optional)](#install-repo-skill-optional)
23
27
  - [Security and Troubleshooting](#security-and-troubleshooting)
24
28
  - [Getting Help](#getting-help)
29
+ - [Changelog](./CHANGELOG.md)
25
30
  - [License](#license)
26
31
 
27
32
  ## Project Scope
@@ -216,6 +221,8 @@ pnpm audit --prod --audit-level high
216
221
 
217
222
  Installs a reusable skill for Codex CLI / Claude Code to guide tool usage with the standard `submit/status/wait/export/download` workflow.
218
223
 
224
+ > **Note:** After upgrading `doc2x-mcp` to a new version, re-run the install command to update the Skill and ensure the model uses the latest tool descriptions and workflows.
225
+
219
226
  One-command install without cloning (recommended):
220
227
 
221
228
  ```bash
package/icon.png ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noedgeai-org/doc2x-mcp",
3
- "version": "0.1.4-dev.9.1",
3
+ "version": "0.1.5",
4
4
  "description": "Doc2x MCP server (stdio, MCP SDK).",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -21,7 +21,8 @@
21
21
  "./scripts/install-skill.ps1",
22
22
  "./scripts/install-skill-winps.ps1",
23
23
  "./skills/doc2x-mcp/SKILL.md",
24
- "./package.json"
24
+ "./package.json",
25
+ "./icon.png"
25
26
  ],
26
27
  "scripts": {
27
28
  "build": "node ./node_modules/typescript/bin/tsc -p tsconfig.json",
@@ -37,9 +38,9 @@
37
38
  "prepublishOnly": "pnpm run build"
38
39
  },
39
40
  "dependencies": {
40
- "@modelcontextprotocol/sdk": "1.27.1",
41
+ "@modelcontextprotocol/sdk": "1.29.0",
41
42
  "@types/lodash": "^4.17.23",
42
- "lodash": "4.17.23",
43
+ "lodash": "4.18.1",
43
44
  "lru-cache": "^11.2.6",
44
45
  "zod": "latest"
45
46
  },
@@ -48,6 +49,13 @@
48
49
  "prettier": "^3.6.2",
49
50
  "typescript": "latest"
50
51
  },
52
+ "pnpm": {
53
+ "overrides": {
54
+ "path-to-regexp": ">=8.4.0",
55
+ "fast-uri": ">=3.1.2",
56
+ "hono": ">=4.12.25"
57
+ }
58
+ },
51
59
  "publishConfig": {
52
60
  "access": "public"
53
61
  },