@qingflow-tech/qingflow-app-builder-mcp 1.0.27 → 1.0.29

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 @qingflow-tech/qingflow-app-builder-mcp@1.0.27
6
+ npm install @qingflow-tech/qingflow-app-builder-mcp@1.0.29
7
7
  ```
8
8
 
9
9
  Run:
10
10
 
11
11
  ```bash
12
- npx -y -p @qingflow-tech/qingflow-app-builder-mcp@1.0.27 qingflow-app-builder-mcp
12
+ npx -y -p @qingflow-tech/qingflow-app-builder-mcp@1.0.29 qingflow-app-builder-mcp
13
13
  ```
14
14
 
15
15
  Environment:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qingflow-tech/qingflow-app-builder-mcp",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
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 = "1.0.27"
7
+ version = "1.0.29"
8
8
  description = "User-authenticated MCP server for Qingflow"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -4572,6 +4572,7 @@ _BUILDER_TOOL_CONTRACTS: dict[str, JSONObject] = {
4572
4572
  "app_key",
4573
4573
  "package_id",
4574
4574
  "app_name",
4575
+ "app_title",
4575
4576
  "icon",
4576
4577
  "color",
4577
4578
  "visibility",
@@ -490,7 +490,6 @@ class RecordTools(ToolBase):
490
490
  record_id: str = "",
491
491
  columns: list[JSONObject | int] | None = None,
492
492
  view_id: str | None = None,
493
- workflow_node_id: int | None = None,
494
493
  output_profile: str = "detail_context",
495
494
  ) -> JSONObject:
496
495
  return self.record_get_public(
@@ -499,7 +498,7 @@ class RecordTools(ToolBase):
499
498
  record_id=record_id,
500
499
  columns=columns or [],
501
500
  view_id=view_id,
502
- workflow_node_id=workflow_node_id,
501
+ workflow_node_id=None,
503
502
  output_profile=output_profile,
504
503
  )
505
504