hanvon-mcp 1.0.0
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/bin/index.js +45868 -0
- package/hw-mcp/index.js +45868 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hanvon-mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP Server for the hanvon-scanner Robot API. 汉王扫描王官方MCP,支持文档OCR识别,文档关键信息提取。",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "hanvonscanner (https://www.hanvonscanner.com/)",
|
|
7
|
+
"homepage": "https://www.hanvonscanner.com/",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/intsig-textin/hw-mcp-main/issues"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"bin": {
|
|
13
|
+
"hw-mcp": "hw-mcp/index.js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"bin"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "tsx src/index.ts",
|
|
23
|
+
"serve": "tsx src/server.ts",
|
|
24
|
+
"build": "tsc && esbuild hw-mcp/server.js --bundle --platform=node --outfile=bin/index.js --format=cjs",
|
|
25
|
+
"start": "node bin/index.js"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"hanvonscanner",
|
|
29
|
+
"mcp",
|
|
30
|
+
"ocr",
|
|
31
|
+
"pdf",
|
|
32
|
+
"converter",
|
|
33
|
+
"npx",
|
|
34
|
+
"pdf-to-word"
|
|
35
|
+
],
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@anthropic-ai/sdk": "^0.78.0",
|
|
38
|
+
"@modelcontextprotocol/sdk": "1.27.1",
|
|
39
|
+
"axios": "^1.8.4",
|
|
40
|
+
"dotenv": "^17.3.1",
|
|
41
|
+
"esbuild": "^0.27.4",
|
|
42
|
+
"form-data": "^4.0.5",
|
|
43
|
+
"fs": "0.0.1-security",
|
|
44
|
+
"zod": "^4.3.6"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/node": "^20.11.24",
|
|
48
|
+
"tsx": "^4.21.0",
|
|
49
|
+
"typescript": "^5.3.3"
|
|
50
|
+
},
|
|
51
|
+
"main": "index.js"
|
|
52
|
+
}
|