@josephyan/qingflow-app-builder-mcp 0.2.0-beta.24 → 0.2.0-beta.25

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 CHANGED
@@ -3,13 +3,13 @@
3
3
  Install:
4
4
 
5
5
  ```bash
6
- npm install @josephyan/qingflow-app-builder-mcp@0.2.0-beta.24
6
+ npm install @josephyan/qingflow-app-builder-mcp@0.2.0-beta.25
7
7
  ```
8
8
 
9
9
  Run:
10
10
 
11
11
  ```bash
12
- npx -y -p @josephyan/qingflow-app-builder-mcp@0.2.0-beta.24 qingflow-app-builder-mcp
12
+ npx -y -p @josephyan/qingflow-app-builder-mcp@0.2.0-beta.25 qingflow-app-builder-mcp
13
13
  ```
14
14
 
15
15
  Environment:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@josephyan/qingflow-app-builder-mcp",
3
- "version": "0.2.0-beta.24",
3
+ "version": "0.2.0-beta.25",
4
4
  "description": "Builder MCP for Qingflow app/package/system design and staged solution workflows.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "qingflow-mcp"
7
- version = "0.2.0b24"
7
+ version = "0.2.0b25"
8
8
  description = "User-authenticated MCP server for Qingflow"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -2,4 +2,4 @@ from __future__ import annotations
2
2
 
3
3
  __all__ = ["__version__"]
4
4
 
5
- __version__ = "0.2.0b23"
5
+ __version__ = "0.2.0b25"
@@ -28,6 +28,7 @@ def build_server() -> FastMCP:
28
28
  instructions=(
29
29
  "Use auth_login first, then workspace_list and workspace_select. "
30
30
  "All resource tools operate with the logged-in user's Qingflow permissions.\n\n"
31
+ "If app_key is unknown, use app_list or app_search first to discover current-user visible apps in the selected workspace. "
31
32
  "For analytics, use record_schema_get first, let the model build field_id-based DSL, "
32
33
  "then call record_analyze. record_analyze returns compact business-first output as query/result/ranking/ratios/completeness/presentation; use verbose only for route/debug details. "
33
34
  "record_schema_get returns the current user's applicant-node visible schema only; hidden fields are omitted and missing fields should be treated as not visible in the current permission scope. "
@@ -6,6 +6,7 @@ from .backend_client import BackendClient
6
6
  from .config import DEFAULT_PROFILE
7
7
  from .session_store import SessionStore
8
8
  from .tools.approval_tools import ApprovalTools
9
+ from .tools.app_tools import AppTools
9
10
  from .tools.auth_tools import AuthTools
10
11
  from .tools.directory_tools import DirectoryTools
11
12
  from .tools.file_tools import FileTools
@@ -19,6 +20,7 @@ def build_user_server() -> FastMCP:
19
20
  "Qingflow App User MCP",
20
21
  instructions=(
21
22
  "Use this server for Qingflow operational workflows with a schema-first path. "
23
+ "If app_key is unknown, use app_list or app_search first to discover current-user visible apps in the selected workspace. "
22
24
  "For records, start with record_schema_get, then choose record_list, record_get, or record_write. "
23
25
  "record_schema_get returns the current user's applicant-node visible schema only; hidden fields are omitted and missing fields should be treated as not visible in the current permission scope. "
24
26
  "For analytics, switch to record_schema_get and record_analyze; its default output is compact query/result/ranking/ratios/completeness/presentation, with route/debug only in verbose mode. "
@@ -29,6 +31,7 @@ def build_user_server() -> FastMCP:
29
31
  sessions = SessionStore()
30
32
  backend = BackendClient()
31
33
  auth = AuthTools(sessions, backend)
34
+ apps = AppTools(sessions, backend)
32
35
  workspace = WorkspaceTools(sessions, backend)
33
36
  files = FileTools(sessions, backend)
34
37
  approvals = ApprovalTools(sessions, backend)
@@ -96,6 +99,14 @@ def build_user_server() -> FastMCP:
96
99
  def workspace_select(profile: str = DEFAULT_PROFILE, ws_id: int = 0) -> dict:
97
100
  return workspace.workspace_select(profile=profile, ws_id=ws_id)
98
101
 
102
+ @server.tool()
103
+ def app_list(profile: str = DEFAULT_PROFILE) -> dict:
104
+ return apps.app_list(profile=profile)
105
+
106
+ @server.tool()
107
+ def app_search(profile: str = DEFAULT_PROFILE, keyword: str = "", page_num: int = 1, page_size: int = 50) -> dict:
108
+ return apps.app_search(profile=profile, keyword=keyword, page_num=page_num, page_size=page_size)
109
+
99
110
  @server.tool()
100
111
  def file_get_upload_info(
101
112
  profile: str = DEFAULT_PROFILE,
@@ -76,14 +76,20 @@ class AppTools(ToolBase):
76
76
  return self.app_publish(profile=profile, app_key=app_key, payload=payload or {})
77
77
 
78
78
  def app_list(self, *, profile: str, ship_auth: bool = False) -> JSONObject:
79
- """Get all apps with full hierarchy from tag/apps endpoint."""
79
+ """List current-user visible apps in the selected workspace."""
80
80
  def runner(session_profile, context):
81
81
  result = self.backend.request("GET", context, "/tag/apps")
82
- return {
82
+ items, source_shape = self._extract_visible_apps(result)
83
+ response = {
83
84
  "profile": profile,
84
85
  "ws_id": session_profile.selected_ws_id,
85
- "items": result,
86
+ "items": items,
87
+ "count": len(items),
88
+ "source_shape": source_shape,
86
89
  }
90
+ if ship_auth:
91
+ response["raw"] = result
92
+ return response
87
93
 
88
94
  return self._run(profile, runner)
89
95
 
@@ -98,19 +104,20 @@ class AppTools(ToolBase):
98
104
 
99
105
  result = self.backend.request("GET", context, "/app/item", params=params)
100
106
 
101
- # Extract app list from the response
102
107
  apps = []
103
108
  if isinstance(result, dict):
104
109
  items = result.get("list", [])
105
110
  for item in items:
106
111
  if isinstance(item, dict):
107
- apps.append({
108
- "app_key": item.get("appKey"),
109
- "title": item.get("title") or item.get("formTitle"),
110
- "form_id": item.get("formId"),
111
- "tag_id": item.get("tagId"),
112
- "group_id": item.get("groupId"),
113
- })
112
+ normalized = self._normalize_visible_app(
113
+ item,
114
+ package_tag_id=_coerce_positive_int(item.get("tagId")),
115
+ package_name=str(item.get("tagName") or "").strip() or None,
116
+ group_id=_coerce_positive_int(item.get("groupId")),
117
+ group_name=str(item.get("groupName") or "").strip() or None,
118
+ )
119
+ if normalized is not None:
120
+ apps.append(normalized)
114
121
 
115
122
  return {
116
123
  "profile": profile,
@@ -119,6 +126,7 @@ class AppTools(ToolBase):
119
126
  "page_num": page_num,
120
127
  "page_size": page_size,
121
128
  "total": result.get("total") if isinstance(result, dict) else len(apps),
129
+ "items": apps,
122
130
  "apps": apps,
123
131
  }
124
132
 
@@ -424,6 +432,88 @@ class AppTools(ToolBase):
424
432
  }
425
433
  return {key: value for key, value in compact.items() if value is not None}
426
434
 
435
+ def _extract_visible_apps(self, result: Any) -> tuple[list[JSONObject], str]:
436
+ apps: list[JSONObject] = []
437
+ seen: set[str] = set()
438
+
439
+ def walk(
440
+ node: Any,
441
+ *,
442
+ package_tag_id: int | None = None,
443
+ package_name: str | None = None,
444
+ group_id: int | None = None,
445
+ group_name: str | None = None,
446
+ ) -> None:
447
+ if isinstance(node, list):
448
+ for item in node:
449
+ walk(
450
+ item,
451
+ package_tag_id=package_tag_id,
452
+ package_name=package_name,
453
+ group_id=group_id,
454
+ group_name=group_name,
455
+ )
456
+ return
457
+ if not isinstance(node, dict):
458
+ return
459
+
460
+ next_package_tag_id = _coerce_positive_int(node.get("tagId")) or package_tag_id
461
+ next_package_name = str(node.get("tagName") or "").strip() or package_name
462
+ next_group_id = _coerce_positive_int(node.get("groupId")) or group_id
463
+ next_group_name = str(node.get("groupName") or node.get("groupTitle") or "").strip() or group_name
464
+
465
+ normalized = self._normalize_visible_app(
466
+ node,
467
+ package_tag_id=next_package_tag_id,
468
+ package_name=next_package_name,
469
+ group_id=next_group_id,
470
+ group_name=next_group_name,
471
+ )
472
+ if normalized is not None:
473
+ app_key = str(normalized.get("app_key") or "").strip()
474
+ if app_key and app_key not in seen:
475
+ seen.add(app_key)
476
+ apps.append(normalized)
477
+
478
+ for value in node.values():
479
+ if isinstance(value, (list, dict)):
480
+ walk(
481
+ value,
482
+ package_tag_id=next_package_tag_id,
483
+ package_name=next_package_name,
484
+ group_id=next_group_id,
485
+ group_name=next_group_name,
486
+ )
487
+
488
+ walk(result)
489
+ return apps, type(result).__name__
490
+
491
+ def _normalize_visible_app(
492
+ self,
493
+ item: dict[str, Any],
494
+ *,
495
+ package_tag_id: int | None,
496
+ package_name: str | None,
497
+ group_id: int | None,
498
+ group_name: str | None,
499
+ ) -> JSONObject | None:
500
+ app_key = str(item.get("appKey") or item.get("app_key") or "").strip()
501
+ if not app_key:
502
+ return None
503
+ title = str(item.get("title") or item.get("formTitle") or item.get("appName") or item.get("name") or app_key).strip() or app_key
504
+ tag_ids = item.get("tagIds") if isinstance(item.get("tagIds"), list) else []
505
+ compact = {
506
+ "app_key": app_key,
507
+ "title": title,
508
+ "form_id": item.get("formId"),
509
+ "tag_id": package_tag_id,
510
+ "package_name": package_name,
511
+ "group_id": group_id,
512
+ "group_name": group_name,
513
+ "tag_ids": [value for value in (_coerce_positive_int(tag_id) for tag_id in tag_ids) if value is not None],
514
+ }
515
+ return {key: value for key, value in compact.items() if value not in (None, [], "", {})}
516
+
427
517
  def _count_auth_members(self, auth_payload: Any, member_key: str) -> int:
428
518
  if not isinstance(auth_payload, dict):
429
519
  return 0
@@ -470,3 +560,11 @@ def _normalize_form_type(value: int | str) -> int:
470
560
  if text in FORM_TYPE_ALIASES:
471
561
  return FORM_TYPE_ALIASES[text]
472
562
  raise_tool_error(QingflowApiError.config_error("form_type must be a positive integer or one of: default, form, schema, new, draft, edit"))
563
+
564
+
565
+ def _coerce_positive_int(value: Any) -> int | None:
566
+ try:
567
+ number = int(value)
568
+ except (TypeError, ValueError):
569
+ return None
570
+ return number if number > 0 else None
@@ -1156,8 +1156,12 @@ class RecordTools(ToolBase):
1156
1156
  details={"location": f"metrics[{idx}]", "field": _field_ref_payload(field), "op": op},
1157
1157
  )
1158
1158
  elif item.get("field_id", item.get("fieldId")) is not None:
1159
- # LLM 经常给 count 传 field_id,静默忽略而非报错
1160
- pass
1159
+ raise RecordInputError(
1160
+ message=f"metrics[{idx}] with op 'count' must not include field_id",
1161
+ error_code="INVALID_ANALYZE_METRIC",
1162
+ fix_hint="For count, omit field_id and use only {'op': 'count', 'alias': '记录数'}.",
1163
+ details={"location": f"metrics[{idx}]", "op": op},
1164
+ )
1161
1165
  alias = _normalize_optional_text(item.get("alias"))
1162
1166
  if alias is None:
1163
1167
  if op == "count":