
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
mcp-ktt-ocr
Advanced tools
MCP service for order screenshot OCR recognition using Alibaba Cloud Bailian qwen-vl model
基于阿里云百炼 qwen-vl 模型的订单截图 OCR 识别 MCP 服务。
recognize_ecommerce_screenshot):识别电商平台小程序截图,支持三种类型:
general_ocr):通用图片文字识别,提取图片中的所有文字内容analyze_image_content):分析图片内容,判断图片类型并提取关键信息npm install mcp-order-ocr
在使用前需要设置阿里云 DashScope API Key:
export DASHSCOPE_API_KEY=your_api_key_here
mcp-order-ocrDASHSCOPE_API_KEY识别电商平台小程序截图,自动分类并提取结构化信息。
参数:
image_url (string, 必填):截图的 URL 地址custom_prompt (string, 可选):自定义识别提示词,覆盖默认提示词返回示例:
订单信息截图:
{
"type": "order",
"leader_name": "团团优选",
"product_name": "【厚底小金豆双带勃肯凉拖鞋】",
"delivery_status": "已发货",
"pay_amount": "29.9",
"group_number": "371",
"nickname": "用户昵称",
"order_number": "250704-308244682452790"
}
商品信息截图:
{
"type": "product",
"product_name": "【厚底小金豆双带勃肯凉拖鞋】"
}
收款二维码截图:
{
"type": "qrcode"
}
其他类型:
{
"type": "unknown"
}
通用图片文字识别。
参数:
image_url (string, 必填):图片的 URL 地址custom_prompt (string, 可选):自定义提示词分析图片内容和类型。
参数:
image_url (string, 必填):图片的 URL 地址返回示例:
{
"image_type": "订单截图",
"key_info": {
"order_id": "250704-308244682452790",
"product": "凉拖鞋"
},
"suggested_action": "可以查询该订单的物流信息"
}
# 克隆项目
git clone <repo_url>
cd mcp-ocr-service
# 安装依赖
npm install
# 编译
npm run build
# 运行(需要设置 DASHSCOPE_API_KEY)
npm start
MIT
FAQs
MCP service for order screenshot OCR recognition using Alibaba Cloud Bailian qwen-vl model
The npm package mcp-ktt-ocr receives a total of 5 weekly downloads. As such, mcp-ktt-ocr popularity was classified as not popular.
We found that mcp-ktt-ocr demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.