@levalicious/server-memory 0.0.15 → 0.0.16
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/server.js +2 -2
- package/package.json +2 -4
package/dist/server.js
CHANGED
|
@@ -101,7 +101,7 @@ function sortNeighbors(neighbors, sortBy = "llmrank", sortDir, rankMaps) {
|
|
|
101
101
|
return mult * (aVal - bVal);
|
|
102
102
|
});
|
|
103
103
|
}
|
|
104
|
-
export const MAX_CHARS =
|
|
104
|
+
export const MAX_CHARS = 16384;
|
|
105
105
|
function paginateItems(items, cursor = 0, maxChars = MAX_CHARS) {
|
|
106
106
|
const result = [];
|
|
107
107
|
let i = cursor;
|
|
@@ -953,7 +953,7 @@ export function createServer(memoryFilePath) {
|
|
|
953
953
|
sizes: ["any"]
|
|
954
954
|
}
|
|
955
955
|
],
|
|
956
|
-
version: "0.0.
|
|
956
|
+
version: "0.0.16",
|
|
957
957
|
}, {
|
|
958
958
|
capabilities: {
|
|
959
959
|
tools: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@levalicious/server-memory",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"description": "MCP server for enabling memory for Claude through a knowledge graph",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Levalicious",
|
|
@@ -26,13 +26,11 @@
|
|
|
26
26
|
"test": "NODE_OPTIONS='--experimental-vm-modules' jest"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@modelcontextprotocol/sdk": "1.26.0"
|
|
30
|
-
"proper-lockfile": "^4.1.2"
|
|
29
|
+
"@modelcontextprotocol/sdk": "1.26.0"
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
32
|
"@types/jest": "^30.0.0",
|
|
34
33
|
"@types/node": "^25",
|
|
35
|
-
"@types/proper-lockfile": "^4.1.4",
|
|
36
34
|
"eslint": "^10.0.0",
|
|
37
35
|
"husky": "^9.1.7",
|
|
38
36
|
"jest": "^30.2.0",
|