云启智联 MCP Server
OfficialThis server provides AI-powered document parsing capabilities for financial and general documents, allowing AI clients to extract structured data from images or PDFs.
parse_bank_receipt: Parse bank receipt images or PDFs, with automatic cropping of multiple receipts per page. Extracts structured fields such as transaction date, summary, amount, account numbers, account holder names, bank names, and transaction reference numbers.parse_bank_statement: Parse bank statement images or PDFs, returning structured account information and transaction details.parse_invoice: Parse VAT invoice images or PDFs, extracting invoice code, number, issue date, amounts, and buyer/seller information.parse_document: General document parsing to extract structured text content from various PDFs or images.get_task_result: Query the results of previously submitted asynchronous parsing tasks using a task ID.
All tools require a 云启智联 API Key and accept either a local file path or a remote file URL as input. An optional callback URL can be provided for asynchronous task notifications.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@云启智联 MCP Server解析这张银行回单 /tmp/receipt.pdf"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
云启智联 MCP Server
云启智联AI文档解析服务的 Model Context Protocol (MCP) 服务器,让 Claude、Cursor、Windsurf 等支持 MCP 的 AI 客户端直接调用票据识别能力。
功能
parse_bank_receipt— 银行回单解析(支持每页多张自动裁剪)parse_bank_statement— 银行对账单解析parse_invoice— 增值税发票解析parse_document— 通用文档解析get_task_result— 查询异步任务结果
Related MCP server: ntriq-agentshop
前置要求
Python 3.10+
云启智联 API Key(从 http://8.135.62.13:5000 注册获取)
安装
pip install yqzl-mcp-server或从源码安装:
git clone https://github.com/yunqi-zhilian/yqzl-mcp-server.git
cd yqzl-mcp-server
pip install -e .启动
安装后,如果 yqzl-mcp-server 命令可用,直接运行:
yqzl-mcp-server部分环境(尤其是 Windows)安装后脚本目录可能不在 PATH 中,导致命令找不到。此时可使用 Python 模块方式启动,效果完全相同:
python -m yqzl_mcp_server.server在 Claude Desktop 中配置
编辑 ~/Library/Application Support/Claude/claude_desktop_config.json(macOS)或 %APPDATA%\Claude\claude_desktop_config.json(Windows):
{
"mcpServers": {
"yqzl-ai": {
"command": "yqzl-mcp-server",
"env": {
"YQZL_API_BASE_URL": "http://8.135.62.13:5000/AIService"
}
}
}
}如果系统提示找不到 yqzl-mcp-server 命令(常见于 Windows),可将 command 改为使用 Python 模块方式启动:
{
"mcpServers": {
"yqzl-ai": {
"command": "python",
"args": ["-m", "yqzl_mcp_server.server"],
"env": {
"YQZL_API_BASE_URL": "http://8.135.62.13:5000/AIService"
}
}
}
}配置完成后重启 Claude Desktop,即可在对话中让 Claude 调用票据识别工具。
在 Cursor 中配置
打开 Cursor Settings → MCP,添加 server:
Type:
stdioName:
yqzl-aiCommand:
yqzl-mcp-server
如果命令找不到,可改用:
Command:
pythonArgs:
-m yqzl_mcp_server.server
使用示例
对 AI 说:
请用云启智联解析这张银行回单
/Users/xxx/receipt.pdf,API Key 是as-xxxxxxxx。
AI 会自动调用 parse_bank_receipt 工具并返回结构化结果。
计费说明
MCP Server 不掌握计费逻辑。所有调用都通过你的云启智联 API Key 进行,按量从你在云启智联平台的余额中扣费。具体价格见官网。
自定义上游地址
默认使用 http://8.135.62.13:5000/AIService。域名备案完成后,可通过环境变量切换:
export YQZL_API_BASE_URL="https://yunqi-zhilian.com/AIService"开发
pip install -e ".[dev]"
python -m yqzl_mcp_server.server许可证
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yunqi-zhilian/yqzl-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server