mingdao-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MINGDAO_SIGN | Yes | API 签名 | |
| MINGDAO_APP_KEY | Yes | 明道云应用 Key | |
| MINGDAO_BASE_URL | No | 明道云域名 | https://cooperation.uniontech.com |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_worksheetsB | 获取应用中的所有工作表列表,包括工作表ID、名称、别名等信息 |
| get_worksheet_schemaA | 获取工作表的字段结构、视图信息,包括所有字段的ID、名称、类型、是否必填等 |
| query_recordsA | 按条件查询工作表记录,支持分页、排序、筛选条件 |
| get_recordB | 根据ID获取单条记录的详细信息 |
| create_recordC | 在工作表中创建新记录 |
| create_record_with_relationsB | 创建新记录并同时建立与其他记录的关联关系 |
| update_recordC | 更新指定记录的字段值 |
| update_record_relationsB | 更新记录的关联关系(全量覆盖) |
| delete_recordC | 删除指定记录 |
| get_related_recordsB | 获取某条记录的关联记录列表 |
| batch_create_recordsC | 批量创建多条记录 |
| batch_update_recordsB | 批量更新多条记录的相同字段 |
| create_worksheetB | 创建新的工作表 |
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 13 tools
Each tool has a clearly distinct purpose: individual vs batch record operations, with/without relations, and worksheet management. There is no ambiguity between create_record and batch_create_records, or between get_record and query_records.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_record, batch_create_records, get_worksheet_schema). No mixing of styles or conventions.
13 tools is well-scoped for a data management server, covering record CRUD, batch operations, relations, and worksheet schema. No tool is superfluous, and the count supports a typical workflow.
Core record operations are fully covered, including relations. Minor gaps: missing batch delete, worksheet update/delete, and relation deletion. However, the essential create, read, update, delete, and query are present.