@josephyan/qingflow-app-user-mcp 0.2.0-beta.31 → 0.2.0-beta.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/skills/qingflow-app-user/SKILL.md +6 -2
- package/skills/qingflow-task-ops/SKILL.md +51 -62
- package/src/qingflow_mcp/__init__.py +1 -1
- package/src/qingflow_mcp/server.py +10 -0
- package/src/qingflow_mcp/server_app_user.py +10 -0
- package/src/qingflow_mcp/tools/approval_tools.py +54 -1
- package/src/qingflow_mcp/tools/task_context_tools.py +1063 -0
package/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
Install:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @josephyan/qingflow-app-user-mcp@0.2.0-beta.
|
|
6
|
+
npm install @josephyan/qingflow-app-user-mcp@0.2.0-beta.32
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Run:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx -y -p @josephyan/qingflow-app-user-mcp@0.2.0-beta.
|
|
12
|
+
npx -y -p @josephyan/qingflow-app-user-mcp@0.2.0-beta.32 qingflow-app-user-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Environment:
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
@@ -19,16 +19,20 @@ Route to exactly one of these specialized paths:
|
|
|
19
19
|
1. Record CRUD
|
|
20
20
|
Switch to [$qingflow-record-crud](/Users/yanqidong/Documents/qingflow-next/.codex/skills/qingflow-record-crud/SKILL.md)
|
|
21
21
|
|
|
22
|
-
2.
|
|
22
|
+
2. Task workflow operations
|
|
23
|
+
Switch to [$qingflow-task-ops](/Users/yanqidong/Documents/qingflow-next/.codex/skills/qingflow-task-ops/SKILL.md)
|
|
24
|
+
|
|
25
|
+
3. Analysis
|
|
23
26
|
Switch to [$qingflow-record-analysis](/Users/yanqidong/Documents/qingflow-next/.codex/skills/qingflow-record-analysis/SKILL.md)
|
|
24
27
|
|
|
25
|
-
|
|
28
|
+
4. MCP connection / auth / workspace selection
|
|
26
29
|
Switch to [$qingflow-mcp-setup](/Users/yanqidong/.codex/skills/qingflow-mcp-setup/SKILL.md)
|
|
27
30
|
|
|
28
31
|
## Routing Rules
|
|
29
32
|
|
|
30
33
|
- If the user does not know the target `app_key`, discover apps first with `app_list` or `app_search`, then route to the specialized skill
|
|
31
34
|
- If the task is about browsing, reading, creating, updating, deleting, attachments, relations, subtable writes, or member/department-field candidate lookup, switch to `$qingflow-record-crud`
|
|
35
|
+
- If the task is about todo discovery, task context, approval actions, rollback or transfer, associated report review, or workflow log review, switch to `$qingflow-task-ops`
|
|
32
36
|
- If the task is about grouped distributions, ratios, rankings, trends, insights, or any final statistical conclusion, switch to `$qingflow-record-analysis`
|
|
33
37
|
- If the MCP is not connected, authenticated, or bound to the right workspace, switch to `$qingflow-mcp-setup`
|
|
34
38
|
|
|
@@ -1,82 +1,62 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: qingflow-task-ops
|
|
3
|
-
description: Use Qingflow
|
|
3
|
+
description: Use Qingflow todo discovery, workflow task context, associated approval context, workflow logs, and unified task actions after the MCP is already connected and authenticated. Do not use this skill for record CRUD or final statistical analysis.
|
|
4
4
|
metadata:
|
|
5
|
-
short-description: Qingflow task
|
|
5
|
+
short-description: Qingflow task workflow context and actions
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Qingflow Task Ops
|
|
9
9
|
|
|
10
10
|
## Overview
|
|
11
11
|
|
|
12
|
-
This skill is for task
|
|
12
|
+
This skill is for task workflow operations only.
|
|
13
13
|
Assumes MCP is connected, authenticated, and on the correct workspace.
|
|
14
14
|
|
|
15
15
|
## Default Paths
|
|
16
16
|
|
|
17
17
|
Use exactly one of these default paths:
|
|
18
18
|
|
|
19
|
-
1.
|
|
20
|
-
`task_summary`
|
|
21
|
-
|
|
22
|
-
2. Flat task browsing
|
|
19
|
+
1. Find target todos
|
|
23
20
|
`task_list`
|
|
24
21
|
|
|
25
|
-
|
|
26
|
-
`
|
|
22
|
+
2. Read one task context
|
|
23
|
+
`task_list -> exact target -> task_get`
|
|
27
24
|
|
|
28
|
-
|
|
29
|
-
`
|
|
25
|
+
3. Read associated approval context
|
|
26
|
+
`task_get -> task_associated_report_detail_get` or `task_workflow_log_get`
|
|
30
27
|
|
|
31
|
-
|
|
32
|
-
`
|
|
28
|
+
4. Execute workflow action
|
|
29
|
+
`task_list -> exact target -> task_get -> task_action_execute`
|
|
33
30
|
|
|
34
31
|
## Core Tools
|
|
35
32
|
|
|
36
|
-
- `task_summary`
|
|
37
33
|
- `task_list`
|
|
38
|
-
- `
|
|
39
|
-
- `
|
|
40
|
-
- `
|
|
41
|
-
- `
|
|
42
|
-
- `task_approve`
|
|
43
|
-
- `task_reject`
|
|
44
|
-
- `task_rollback_candidates`
|
|
45
|
-
- `task_rollback`
|
|
46
|
-
- `task_transfer_candidates`
|
|
47
|
-
- `task_transfer`
|
|
48
|
-
- `record_comment_write`
|
|
49
|
-
- `record_comment_list`
|
|
50
|
-
- `record_comment_mentions`
|
|
51
|
-
- `record_comment_mark_read`
|
|
34
|
+
- `task_get`
|
|
35
|
+
- `task_action_execute`
|
|
36
|
+
- `task_associated_report_detail_get`
|
|
37
|
+
- `task_workflow_log_get`
|
|
52
38
|
|
|
53
39
|
## Supporting Tools
|
|
54
40
|
|
|
55
|
-
- `
|
|
56
|
-
- `
|
|
57
|
-
- `directory_list_all_internal_users`
|
|
58
|
-
- `directory_list_internal_departments`
|
|
59
|
-
- `directory_list_all_departments`
|
|
60
|
-
- `directory_list_sub_departments`
|
|
61
|
-
- `directory_list_external_members`
|
|
62
|
-
- `record_get`
|
|
41
|
+
- `app_list`
|
|
42
|
+
- `app_search`
|
|
63
43
|
|
|
64
44
|
## Standard Operating Order
|
|
65
45
|
|
|
66
46
|
1. Ensure auth exists
|
|
67
47
|
2. Ensure workspace is selected
|
|
68
|
-
3.
|
|
69
|
-
4.
|
|
70
|
-
5.
|
|
71
|
-
6.
|
|
72
|
-
7.
|
|
73
|
-
8.
|
|
48
|
+
3. Discover the exact target with `task_list`
|
|
49
|
+
4. Read node context with `task_get`
|
|
50
|
+
5. Before giving any approval recommendation, read `task_workflow_log_get`
|
|
51
|
+
6. If `task_get` returns any `associated_reports`, read every visible report through `task_associated_report_detail_get`
|
|
52
|
+
7. Give an approval recommendation only after reviewing the node context, workflow log, and associated report details
|
|
53
|
+
8. Wait for explicit user confirmation before `task_action_execute`
|
|
54
|
+
9. Execute through `task_action_execute`
|
|
55
|
+
10. After actions, report the exact `app_key`, `record_id`, `workflow_node_id`, and executed action
|
|
74
56
|
|
|
75
57
|
## Task-Center Rules
|
|
76
58
|
|
|
77
|
-
- Use `task_summary` for headline counts
|
|
78
59
|
- Use `task_list` for flat browsing
|
|
79
|
-
- Use `task_facets` for grouped worksheet or workflow-node buckets
|
|
80
60
|
- `task_box` must be one of:
|
|
81
61
|
- `todo`
|
|
82
62
|
- `initiated`
|
|
@@ -93,30 +73,39 @@ Use exactly one of these default paths:
|
|
|
93
73
|
- `due_soon`
|
|
94
74
|
- `unread`
|
|
95
75
|
- `ended`
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
76
|
+
- `task_list` is the only public task discovery path in this MCP surface
|
|
77
|
+
- Treat `task_id` as a locator only; the action primary key is `app_key + record_id + workflow_node_id`
|
|
78
|
+
- Default box usage:
|
|
79
|
+
- `todo`: `task_list -> task_get -> task_workflow_log_get / task_associated_report_detail_get -> recommendation -> explicit user confirmation -> task_action_execute`
|
|
80
|
+
- `initiated`: `task_list -> record_get`
|
|
81
|
+
- `done`: `task_list -> record_get`
|
|
82
|
+
- `cc`: `task_list -> record_get`
|
|
83
|
+
- Treat `initiated`, `done`, and `cc` primarily as list-plus-record-detail flows, not task action flows
|
|
99
84
|
|
|
100
85
|
## Workflow Usage Actions
|
|
101
86
|
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
-
|
|
111
|
-
-
|
|
112
|
-
-
|
|
113
|
-
-
|
|
87
|
+
- `task_get.capabilities.available_actions` is the source of truth for v1 executable actions
|
|
88
|
+
- Current public actions are:
|
|
89
|
+
- `approve`
|
|
90
|
+
- `reject`
|
|
91
|
+
- `rollback`
|
|
92
|
+
- `transfer`
|
|
93
|
+
- `urge`
|
|
94
|
+
- Before any approve/reject/rollback/transfer recommendation, always review `task_workflow_log_get` when `task_get.visibility.audit_record_visible=true`
|
|
95
|
+
- If `task_get` returns visible `associated_reports`, review each one with `task_associated_report_detail_get`; do not rely on report summary alone
|
|
96
|
+
- Do not give an approval recommendation based only on `task_get`
|
|
97
|
+
- Do not execute `task_action_execute` until the user explicitly confirms the chosen action
|
|
98
|
+
- Avoid actions on ambiguous tasks or records
|
|
99
|
+
- Summarize the final action and the exact `app_key / record_id / workflow_node_id`
|
|
114
100
|
|
|
115
101
|
## Response Interpretation
|
|
116
102
|
|
|
117
|
-
- `
|
|
118
|
-
- `
|
|
119
|
-
- `
|
|
103
|
+
- `task_list` returns normalized todo rows and is the only default discovery path
|
|
104
|
+
- `task_get` returns node context summary, not full historical report data
|
|
105
|
+
- `task_associated_report_detail_get` may return either:
|
|
106
|
+
- `result_type=view_list`
|
|
107
|
+
- `result_type=chart_data`
|
|
108
|
+
- `task_workflow_log_get` returns workflow log detail only when the node grants log visibility
|
|
120
109
|
- Treat `request_route` as the source of truth for live route debugging
|
|
121
110
|
- If only part of the requested work is completed, explicitly disclose which parts are done and which are not
|
|
122
111
|
|
|
@@ -17,6 +17,7 @@ from .tools.qingbi_report_tools import QingbiReportTools
|
|
|
17
17
|
from .tools.record_tools import RecordTools
|
|
18
18
|
from .tools.role_tools import RoleTools
|
|
19
19
|
from .tools.solution_tools import SolutionTools
|
|
20
|
+
from .tools.task_context_tools import TaskContextTools
|
|
20
21
|
from .tools.view_tools import ViewTools
|
|
21
22
|
from .tools.workflow_tools import WorkflowTools
|
|
22
23
|
from .tools.workspace_tools import WorkspaceTools
|
|
@@ -93,6 +94,14 @@ Analysis answers must include concrete numbers. When applicable, include percent
|
|
|
93
94
|
- If a member or department field id is known but candidate ids are not, use `record_member_candidates` or `record_department_candidates` before `record_write`.
|
|
94
95
|
- For default-all member or department fields, prefer those field candidate tools instead of starting with `directory_*`.
|
|
95
96
|
|
|
97
|
+
## Task Workflow Path
|
|
98
|
+
|
|
99
|
+
`task_list -> task_get -> task_action_execute`
|
|
100
|
+
|
|
101
|
+
- Use `task_associated_report_detail_get` for associated view or report details.
|
|
102
|
+
- Use `task_workflow_log_get` for full workflow log history.
|
|
103
|
+
- Task actions operate on `app_key + record_id + workflow_node_id`, not `task_id`.
|
|
104
|
+
|
|
96
105
|
## Time Handling
|
|
97
106
|
|
|
98
107
|
Normalize relative dates before building DSL.
|
|
@@ -115,6 +124,7 @@ Avoid builder-side app or schema changes here.""",
|
|
|
115
124
|
WorkspaceTools(sessions, backend).register(server)
|
|
116
125
|
FileTools(sessions, backend).register(server)
|
|
117
126
|
RecordTools(sessions, backend).register(server)
|
|
127
|
+
TaskContextTools(sessions, backend).register(server)
|
|
118
128
|
RoleTools(sessions, backend).register(server)
|
|
119
129
|
AppTools(sessions, backend).register(server)
|
|
120
130
|
QingbiReportTools(sessions, backend).register(server)
|
|
@@ -12,6 +12,7 @@ from .tools.auth_tools import AuthTools
|
|
|
12
12
|
from .tools.directory_tools import DirectoryTools
|
|
13
13
|
from .tools.file_tools import FileTools
|
|
14
14
|
from .tools.record_tools import RecordTools
|
|
15
|
+
from .tools.task_context_tools import TaskContextTools
|
|
15
16
|
from .tools.workspace_tools import WorkspaceTools
|
|
16
17
|
|
|
17
18
|
|
|
@@ -81,6 +82,14 @@ Analysis answers must include concrete numbers. When applicable, include percent
|
|
|
81
82
|
- If a member or department field id is known but candidate ids are not, use `record_member_candidates` or `record_department_candidates` before `record_write`.
|
|
82
83
|
- For default-all member or department fields, prefer those field candidate tools instead of starting with `directory_*`.
|
|
83
84
|
|
|
85
|
+
## Task Workflow Path
|
|
86
|
+
|
|
87
|
+
`task_list -> task_get -> task_action_execute`
|
|
88
|
+
|
|
89
|
+
- Use `task_associated_report_detail_get` for associated view or report details.
|
|
90
|
+
- Use `task_workflow_log_get` for full workflow log history.
|
|
91
|
+
- Task actions operate on `app_key + record_id + workflow_node_id`, not `task_id`.
|
|
92
|
+
|
|
84
93
|
## Time Handling
|
|
85
94
|
|
|
86
95
|
Normalize relative dates before building DSL.
|
|
@@ -221,6 +230,7 @@ Avoid builder-side app or schema changes here.""",
|
|
|
221
230
|
)
|
|
222
231
|
|
|
223
232
|
RecordTools(sessions, backend).register(server)
|
|
233
|
+
TaskContextTools(sessions, backend).register(server)
|
|
224
234
|
DirectoryTools(sessions, backend).register(server)
|
|
225
235
|
|
|
226
236
|
return server
|
|
@@ -611,9 +611,11 @@ class ApprovalTools(ToolBase):
|
|
|
611
611
|
self._normalize_alias(body, "formId", "form_id")
|
|
612
612
|
|
|
613
613
|
node_id = self._extract_node_id(body)
|
|
614
|
-
body["nodeId"] = node_id
|
|
614
|
+
body["nodeId"] = self._resolve_actionable_node_id(context, app_key, apply_id, node_id)
|
|
615
615
|
body["applyId"] = self._match_or_fill_int(body, field_name="applyId", expected_value=apply_id)
|
|
616
616
|
body["formId"] = self._resolve_form_id(profile, context, app_key, explicit_form_id=body.get("formId"))
|
|
617
|
+
if body.get("answers") is None:
|
|
618
|
+
body["answers"] = self._fetch_current_todo_answers(context, app_key, apply_id, body["nodeId"])
|
|
617
619
|
|
|
618
620
|
self._validate_approval_payload(body)
|
|
619
621
|
return body
|
|
@@ -672,6 +674,54 @@ class ApprovalTools(ToolBase):
|
|
|
672
674
|
elif alias_value is not None and payload.get(canonical_key) != alias_value:
|
|
673
675
|
raise_tool_error(QingflowApiError.config_error(f"payload.{canonical_key} and payload.{alias_key} must match when both are provided"))
|
|
674
676
|
|
|
677
|
+
def _resolve_actionable_node_id(self, context, app_key: str, apply_id: int, node_id: int) -> int: # type: ignore[no-untyped-def]
|
|
678
|
+
infos = self.backend.request(
|
|
679
|
+
"GET",
|
|
680
|
+
context,
|
|
681
|
+
f"/app/{app_key}/apply/{apply_id}/auditInfo",
|
|
682
|
+
params={"type": 1},
|
|
683
|
+
)
|
|
684
|
+
if not isinstance(infos, list) or not infos:
|
|
685
|
+
raise_tool_error(
|
|
686
|
+
QingflowApiError.config_error(
|
|
687
|
+
f"apply_id={apply_id} is not currently actionable for the logged-in user in todo list"
|
|
688
|
+
)
|
|
689
|
+
)
|
|
690
|
+
actionable_node_ids = {
|
|
691
|
+
candidate
|
|
692
|
+
for item in infos
|
|
693
|
+
if isinstance(item, dict)
|
|
694
|
+
for candidate in (item.get("auditNodeId"), item.get("nodeId"))
|
|
695
|
+
if isinstance(candidate, int) and candidate > 0
|
|
696
|
+
}
|
|
697
|
+
if node_id not in actionable_node_ids:
|
|
698
|
+
raise_tool_error(
|
|
699
|
+
QingflowApiError.config_error(
|
|
700
|
+
f"payload.nodeId={node_id} is not an actionable todo node for apply_id={apply_id}"
|
|
701
|
+
)
|
|
702
|
+
)
|
|
703
|
+
return node_id
|
|
704
|
+
|
|
705
|
+
def _fetch_current_todo_answers(self, context, app_key: str, apply_id: int, node_id: int) -> list[dict[str, Any]]: # type: ignore[no-untyped-def]
|
|
706
|
+
detail = self.backend.request(
|
|
707
|
+
"GET",
|
|
708
|
+
context,
|
|
709
|
+
f"/app/{app_key}/apply/{apply_id}",
|
|
710
|
+
params={"role": 3, "listType": 1, "auditNodeId": node_id},
|
|
711
|
+
)
|
|
712
|
+
answers = detail.get("answers") if isinstance(detail, dict) else None
|
|
713
|
+
if not isinstance(answers, list):
|
|
714
|
+
raise_tool_error(
|
|
715
|
+
QingflowApiError.config_error(
|
|
716
|
+
f"cannot resolve current answers for apply_id={apply_id} nodeId={node_id}"
|
|
717
|
+
)
|
|
718
|
+
)
|
|
719
|
+
normalized_answers: list[dict[str, Any]] = []
|
|
720
|
+
for item in answers:
|
|
721
|
+
if isinstance(item, dict):
|
|
722
|
+
normalized_answers.append(dict(item))
|
|
723
|
+
return normalized_answers
|
|
724
|
+
|
|
675
725
|
def _validate_approval_payload(self, payload: dict[str, Any]) -> None:
|
|
676
726
|
self._reject_unsupported_fields(payload)
|
|
677
727
|
if not isinstance(payload.get("formId"), int) or payload["formId"] <= 0:
|
|
@@ -680,6 +730,9 @@ class ApprovalTools(ToolBase):
|
|
|
680
730
|
raise_tool_error(QingflowApiError.config_error("payload.applyId must be a positive integer"))
|
|
681
731
|
if not isinstance(payload.get("nodeId"), int) or payload["nodeId"] <= 0:
|
|
682
732
|
raise_tool_error(QingflowApiError.config_error("payload.nodeId must be a positive integer"))
|
|
733
|
+
answers = payload.get("answers")
|
|
734
|
+
if answers is not None and not isinstance(answers, list):
|
|
735
|
+
raise_tool_error(QingflowApiError.config_error("payload.answers must be an array when provided"))
|
|
683
736
|
|
|
684
737
|
def _validate_audit_payload(self, payload: dict[str, Any], *, require_uid: bool = False) -> None:
|
|
685
738
|
self._reject_unsupported_fields(payload)
|