云启智联 MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| YQZL_API_BASE_URL | No | Base URL for the AI service API | http://8.135.62.13:5000/AIService |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| parse_bank_receiptA | 解析银行回单图片或 PDF,支持每页多张回单自动裁剪为单张。返回结构化字段:交易日期、摘要、金额、收支账号户名、银行、交易流水号等。 |
| parse_bank_statementB | 解析银行对账单图片或 PDF,返回账户信息、交易明细等结构化数据。 |
| parse_invoiceB | 解析增值税发票图片或 PDF,返回发票代码、发票号码、开票日期、金额、购销方信息等。 |
| parse_documentC | 通用文档解析,提取 PDF/图片中的结构化文本内容。 |
| get_task_resultB | 根据 task_id 查询异步解析任务的结果。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each parse tool targets a distinct document type (bank receipt, bank statement, invoice, generic document), and get_task_result is clearly separate for async task management. No overlap.
Most tools follow parse_* pattern, but get_task_result uses get_ instead. However, the action difference justifies the variation, and naming is otherwise consistent snake_case.
5 tools is appropriate for a document parsing server, covering major document types and adding a task result retrieval tool without bloat.
Core document parsing types (receipt, statement, invoice, generic) are covered, and async result retrieval is included. Missing potentially other document types like contracts, but not a significant gap for the stated purpose.