AI Skill Hub 强烈推荐:Scribe JS文字识别 是一款优质的MCP工具。AI 综合评分 8.2 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
基于Tesseract和WebAssembly的开源OCR工具,支持图片和PDF文本提取。提供MCP集成能力,适合需要离线文字识别、文档数字化的开发者和企业用户。
Scribe JS文字识别 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
基于Tesseract和WebAssembly的开源OCR工具,支持图片和PDF文本提取。提供MCP集成能力,适合需要离线文字识别、文档数字化的开发者和企业用户。
Scribe JS文字识别 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/scribeocr/scribe.js
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"scribe-js----": {
"command": "npx",
"args": ["-y", "scribe.js"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Scribe JS文字识别 执行以下任务... Claude: [自动调用 Scribe JS文字识别 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"scribe_js____": {
"command": "npx",
"args": ["-y", "scribe.js"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Scribe.js is a JavaScript library that performs OCR and extracts text from images and PDFs.
Common use cases: 1. Recognize text from images. 2. Extract text from user-uploaded .pdf files. 1. If the .pdf file is already text-native, scribe.js can extract the existing text. 2. If the .pdf file is image-native, scribe.js can recognize text using OCR. 3. Write .pdf files that include a high-quality invisible text layer. 1. scribe.js can insert text into an existing .pdf file, making it searchable.
Scribe.js is a library intended for developers. End users who want to scan documents should see the officially-supported GUI at scribeocr.com (repo here).
npm i
Install from npm by running the following:
npm i scribe.js-ocr
Scribe.js is written in JavaScript using ESM, so can be imported directly from browser or Node.js JavaScript code without a build step.
// Import statement in browser:
import scribe from 'node_modules/scribe.js-ocr/scribe.js';
// Import statement for Node.js:
import scribe from 'scribe.js-ocr';
// Basic usage
scribe.extractText(['https://tesseract.projectnaptha.com/img/eng_bw.png'])
.then((res) => console.log(res))
When using Scribe.js in the browser, all files must be served from the same origin as the file importing Scribe.js. This means that importing Scribe.js from a CDN will not work. There is no UMD version.
The following are examples and projects built using Scribe.js. Additional examples can be found in the examples directory.
If you have a project or example repo that uses Scribe.js, feel free to add it to this list using a pull request. Examples submitted should be well documented such that new users can run them; projects should be functional and actively maintained.
git clone --recurse-submodules git@github.com:scribeocr/scribe.js.git cd scribe.js
Considering whether Scribe.js or Tesseract.js is better for your project? Read this article.
优秀的开源OCR方案,WebAssembly架构确保隐私安全。MCP集成设计先进,代码维护活跃,适合专业应用。
该工具使用 AGPL-3.0 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ AGPL 3.0 — 最严格的 Copyleft,网络服务端使用也需开源,SaaS 使用受限。
总体来看,Scribe JS文字识别 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | scribe-js |
| 原始描述 | 开源MCP工具:JavaScript OCR and text extraction for images and PDFs.。⭐284 · JavaScript |
| Topics | OCR识别文本提取PDF处理WebAssemblyMCP工具 |
| GitHub | https://github.com/scribeocr/scribe.js |
| License | AGPL-3.0 |
| 语言 | JavaScript |
收录时间:2026-05-20 · 更新时间:2026-05-30 · License:AGPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端