@univerjs-pro/mcp 0.10.10-experimental.20251016-33b0941 → 0.10.10-nightly.202510180256
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/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/es/facade.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/facade.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/controllers/mcp-tool-registry.controller.d.ts +2 -4
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +3 -3
- package/lib/types/utils/json-utils.d.ts +0 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs-pro/mcp",
|
|
3
|
-
"version": "0.10.10-
|
|
3
|
+
"version": "0.10.10-nightly.202510180256",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"rxjs": "7.8.2",
|
|
59
59
|
"zod": "^4.1.12",
|
|
60
|
-
"@univerjs/core": "0.10.10-
|
|
61
|
-
"@univerjs/network": "0.10.10-
|
|
60
|
+
"@univerjs/core": "0.10.10-nightly.202510180256",
|
|
61
|
+
"@univerjs/network": "0.10.10-nightly.202510180256"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"typescript": "^5.9.3",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Safe JSON stringification utilities for MCP protocol
|
|
3
|
-
* Handles circular references and complex objects with minimal overhead
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* Safely stringify JSON with strict filtering for complex objects
|
|
7
|
-
* Only allows basic types, plain Objects, and Arrays to be serialized
|
|
8
|
-
* All other types are converted to descriptive strings at the first level
|
|
9
|
-
* @param value - The value to stringify
|
|
10
|
-
* @param space - Optional spacing for formatting
|
|
11
|
-
* @returns JSON string with safe handling of complex objects
|
|
12
|
-
*/
|
|
13
|
-
export declare function safeJsonStringify(value: any, space?: string | number): string;
|