kingdee_star
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| kdy_healthB | 健康检查:返回环境、基址、只读开关、凭据与令牌就绪状态。 |
| kdy_auth_fetch_tokenC | 换取 app-token。缺 app_key/app_secret 时自动先用第三方实例ID走 push_app_authorize。 |
| kdy_current_userA | 当前用户信息(只读,零参数,最轻量的连通性探针)。GET /jdy/v2/sys/current_user_info。 |
| kdy_list_accountC | 查询会计科目列表(只读,对账基准)。GET /jdy/v2/fi/account。 |
| kdy_list_account_typeA | 查询科目类别(只读,零参数)。GET /jdy/v2/fi/account_type。 |
| kdy_list_voucherC | 查询会计凭证列表(只读,进销项/账面对账)。GET /jdy/v2/fi/voucher。 |
| kdy_get_voucherA | 按 id 查询凭证详情(只读)。GET /jdy/v2/fi/voucher_detail。 |
| kdy_list_invoiceB | 查询发票列表(只读)。GET /jdy/v2/fi/invoice_fp。 销项/进项不是不同端点,用 bill_type / invoice_type 过滤。 |
| kdy_get_invoiceA | 按 id 查询发票详情(只读)。GET /jdy/v2/fi/invoice_detail。 |
| kdy_list_ar_receiveB | 查询收款单列表(只读)。GET /jdy/v2/arap/ar_credit。 |
| kdy_list_ap_payA | 查询付款单列表(只读,付款核对;付款写入永久禁止)。GET /jdy/v2/arap/ap_credit。 |
| kdy_reconciliationC | 查询往来对账单(只读)。GET /jdy/v2/arap/reconciliation_statement。 |
| kdy_customer_debtC | 查询客户欠款余额(只读)。GET /jdy/v2/arap/customer_debt。 |
| kdy_get_reimb_detailA | 查询报销单详情(只读)。GET /jdy/v2/ebx/reimb_detail。 reimb_id 为单据内码;number 为单据编号(按沙箱实测择一传入)。 |
| kdy_list_expenseB | 查询报销单列表(只读)。注意:ebx 列表端点尚未经沙箱确认,可能返回 404。 |
| kdy_calc_invoice_taxC | 发票税额计算(本地税额引擎,不调用金蝶)。 返回 税额/不含税/是否可抵扣/说明/合规问题。票种 kind 可空(自动推断)。 |
| kdy_fill_reimbursementA | 发票代填报销单草稿(受控写入)。 invoices: [{invoice_no,total,category_hint?,kind?,title?,face_tax?,face_net?,passenger?,fuel?}, ...] 默认 dry_run=True(只构造并过守卫,不真正提交);付款/提交审批仍人工。 |
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 17 tools
每个工具针对明确的资源或操作:健康检查、令牌获取、用户、科目、凭证、发票、收付款、对账、余额、报销、税务计算和填写。list_与get_工具清晰区分实体层级,没有两个工具做同一件事。
大多数工具采用 'kdy_动词_名词' 模式,如 list_account, get_voucher, calc_invoice_tax。少数如 reconciliation 和 customer_debt 省略动词,但仍是可读的名称,整体风格基本统一,仅有轻微不一致。
17个工具对于财务查询域来说略多,但每个工具覆盖了必要的实体和操作,没有冗余。这个数量在合理范围内,略超出典型的最优区间但完全可接受。
覆盖了核心财务实体(科目、凭证、发票、收付款、对账、客户欠款、报销)的查询和详情,并提供了税务计算和受控写入凭证代填。缺少更新删除操作,但该API设计为只读为主,写入受控,基本满足需求。