@qingflow-tech/qingflow-app-user-mcp 1.0.26 → 1.0.27
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/src/qingflow_mcp/tools/file_tools.py +2 -0
package/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
Install:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @qingflow-tech/qingflow-app-user-mcp@1.0.
|
|
6
|
+
npm install @qingflow-tech/qingflow-app-user-mcp@1.0.27
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Run:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx -y -p @qingflow-tech/qingflow-app-user-mcp@1.0.
|
|
12
|
+
npx -y -p @qingflow-tech/qingflow-app-user-mcp@1.0.27 qingflow-app-user-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Environment:
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
@@ -345,6 +345,8 @@ class FileTools(ToolBase):
|
|
|
345
345
|
}
|
|
346
346
|
if path_id is not None:
|
|
347
347
|
encrypted_payload["pathId"] = path_id
|
|
348
|
+
if file_related_url:
|
|
349
|
+
encrypted_payload["fileRelatedUrl"] = file_related_url
|
|
348
350
|
if bucket_type:
|
|
349
351
|
encrypted_payload["bucketType"] = bucket_type
|
|
350
352
|
result = self.backend.request("POST", context, endpoint, json_body=encrypted_payload)
|