@noedgeai-org/doc2x-mcp 0.1.4-dev.8.1 → 0.1.4
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 +15 -1
- package/README_EN.md +14 -0
- package/icon.png +0 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Doc2x MCP Server
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="120" height="120" viewBox="0 0 120 120">
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="r">
|
|
7
|
+
<rect width="120" height="120" rx="24" ry="24"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
<image href="./icon.png" width="120" height="120" clip-path="url(#r)"/>
|
|
11
|
+
</svg>
|
|
12
|
+
</p>
|
|
13
|
+
|
|
3
14
|
[](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/ci.yml)
|
|
4
15
|
[](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/publish.yml)
|
|
5
16
|
[](https://www.npmjs.com/package/@noedgeai-org/doc2x-mcp)
|
|
@@ -22,6 +33,7 @@
|
|
|
22
33
|
- [安装本仓库 Skill(可选)](#安装本仓库-skill可选)
|
|
23
34
|
- [安全与排错](#安全与排错)
|
|
24
35
|
- [问题反馈](#问题反馈)
|
|
36
|
+
- [Changelog](./CHANGELOG.md)
|
|
25
37
|
- [License](#license)
|
|
26
38
|
|
|
27
39
|
## 项目定位
|
|
@@ -214,7 +226,9 @@ pnpm audit --prod --audit-level high
|
|
|
214
226
|
|
|
215
227
|
## 安装本仓库 Skill(可选)
|
|
216
228
|
|
|
217
|
-
用于给 Codex CLI / Claude Code
|
|
229
|
+
用于给 Codex CLI / Claude Code 增加一个"教大模型如何使用 doc2x-mcp tools 的 Skill"。
|
|
230
|
+
|
|
231
|
+
> **提示:** 每次升级 `doc2x-mcp` 版本后,建议重新运行安装命令以更新 Skill,确保大模型使用最新的 tool 描述与工作流。
|
|
218
232
|
|
|
219
233
|
不需要 clone 仓库的一键安装(推荐):
|
|
220
234
|
|
package/README_EN.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Doc2x MCP Server
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="120" height="120" viewBox="0 0 120 120">
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="r">
|
|
7
|
+
<rect width="120" height="120" rx="24" ry="24"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
<image href="./icon.png" width="120" height="120" clip-path="url(#r)"/>
|
|
11
|
+
</svg>
|
|
12
|
+
</p>
|
|
13
|
+
|
|
3
14
|
[](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/ci.yml)
|
|
4
15
|
[](https://github.com/NoEdgeAI/doc2x-mcp/actions/workflows/publish.yml)
|
|
5
16
|
[](https://www.npmjs.com/package/@noedgeai-org/doc2x-mcp)
|
|
@@ -22,6 +33,7 @@ A stdio-based MCP Server that wraps Doc2x v2 PDF/image capabilities into stable,
|
|
|
22
33
|
- [Install Repo Skill (Optional)](#install-repo-skill-optional)
|
|
23
34
|
- [Security and Troubleshooting](#security-and-troubleshooting)
|
|
24
35
|
- [Getting Help](#getting-help)
|
|
36
|
+
- [Changelog](./CHANGELOG.md)
|
|
25
37
|
- [License](#license)
|
|
26
38
|
|
|
27
39
|
## Project Scope
|
|
@@ -216,6 +228,8 @@ pnpm audit --prod --audit-level high
|
|
|
216
228
|
|
|
217
229
|
Installs a reusable skill for Codex CLI / Claude Code to guide tool usage with the standard `submit/status/wait/export/download` workflow.
|
|
218
230
|
|
|
231
|
+
> **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.
|
|
232
|
+
|
|
219
233
|
One-command install without cloning (recommended):
|
|
220
234
|
|
|
221
235
|
```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
|
|
3
|
+
"version": "0.1.4",
|
|
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,7 +38,7 @@
|
|
|
37
38
|
"prepublishOnly": "pnpm run build"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
|
-
"@modelcontextprotocol/sdk": "1.
|
|
41
|
+
"@modelcontextprotocol/sdk": "1.27.1",
|
|
41
42
|
"@types/lodash": "^4.17.23",
|
|
42
43
|
"lodash": "4.17.23",
|
|
43
44
|
"lru-cache": "^11.2.6",
|