@t0ken.ai/memoryx-mcp-server 2.2.6 → 2.2.8
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/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -55,7 +55,7 @@ const path = __importStar(require("path"));
|
|
|
55
55
|
const os = __importStar(require("os"));
|
|
56
56
|
const DEFAULT_API_BASE = "https://t0ken.ai/api";
|
|
57
57
|
// MCP Server 版本号 - 由 prebuild 脚本自动从 package.json 同步
|
|
58
|
-
const VERSION = "2.2.
|
|
58
|
+
const VERSION = "2.2.8";
|
|
59
59
|
// Detected client type from initialize request
|
|
60
60
|
let detectedClient = 'mcp';
|
|
61
61
|
// Lazy-loaded SDK instance
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t0ken.ai/memoryx-mcp-server",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.8",
|
|
4
4
|
"description": "MemoryX MCP Server for Cursor/VS Code/Claude Desktop (powered by @t0ken.ai/memoryx-sdk)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
27
|
-
"@t0ken.ai/memoryx-sdk": "^1.4.
|
|
27
|
+
"@t0ken.ai/memoryx-sdk": "^1.4.9"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^20.0.0",
|
package/src/index.ts
CHANGED
|
@@ -32,7 +32,7 @@ import * as os from "os";
|
|
|
32
32
|
const DEFAULT_API_BASE = "https://t0ken.ai/api";
|
|
33
33
|
|
|
34
34
|
// MCP Server 版本号 - 由 prebuild 脚本自动从 package.json 同步
|
|
35
|
-
const VERSION = "2.2.
|
|
35
|
+
const VERSION = "2.2.8";
|
|
36
36
|
|
|
37
37
|
// Detected client type from initialize request
|
|
38
38
|
let detectedClient: string = 'mcp';
|