@levalicious/server-memory 0.0.19 → 0.0.20

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.
Files changed (2) hide show
  1. package/dist/server.js +8 -8
  2. package/package.json +1 -1
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 = 16384;
104
+ export const MAX_CHARS = 4096;
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.19",
956
+ version: "0.0.20",
957
957
  }, {
958
958
  capabilities: {
959
959
  tools: {},
@@ -1105,7 +1105,7 @@ export function createServer(memoryFilePath) {
1105
1105
  },
1106
1106
  {
1107
1107
  name: "search_nodes",
1108
- description: "Search for nodes in the knowledge graph using a regex pattern. Results are paginated (max 512 chars).",
1108
+ description: "Search for nodes in the knowledge graph using a regex pattern. Results are paginated (max 4096 chars).",
1109
1109
  inputSchema: {
1110
1110
  type: "object",
1111
1111
  properties: {
@@ -1121,7 +1121,7 @@ export function createServer(memoryFilePath) {
1121
1121
  },
1122
1122
  {
1123
1123
  name: "open_nodes",
1124
- description: "Open specific nodes in the knowledge graph by their names. Results are paginated (max 512 chars).",
1124
+ description: "Open specific nodes in the knowledge graph by their names. Results are paginated (max 4096 chars).",
1125
1125
  inputSchema: {
1126
1126
  type: "object",
1127
1127
  properties: {
@@ -1139,7 +1139,7 @@ export function createServer(memoryFilePath) {
1139
1139
  },
1140
1140
  {
1141
1141
  name: "get_neighbors",
1142
- description: "Get names of neighboring entities connected to a specific entity within a given depth. Returns neighbor names with timestamps for sorting. Use open_nodes to get full entity data. Results are paginated (max 512 chars).",
1142
+ description: "Get names of neighboring entities connected to a specific entity within a given depth. Returns neighbor names with timestamps for sorting. Use open_nodes to get full entity data. Results are paginated (max 4096 chars).",
1143
1143
  inputSchema: {
1144
1144
  type: "object",
1145
1145
  properties: {
@@ -1155,7 +1155,7 @@ export function createServer(memoryFilePath) {
1155
1155
  },
1156
1156
  {
1157
1157
  name: "find_path",
1158
- description: "Find a path between two entities in the knowledge graph. Results are paginated (max 512 chars).",
1158
+ description: "Find a path between two entities in the knowledge graph. Results are paginated (max 4096 chars).",
1159
1159
  inputSchema: {
1160
1160
  type: "object",
1161
1161
  properties: {
@@ -1170,7 +1170,7 @@ export function createServer(memoryFilePath) {
1170
1170
  },
1171
1171
  {
1172
1172
  name: "get_entities_by_type",
1173
- description: "Get all entities of a specific type. Results are paginated (max 512 chars).",
1173
+ description: "Get all entities of a specific type. Results are paginated (max 4096 chars).",
1174
1174
  inputSchema: {
1175
1175
  type: "object",
1176
1176
  properties: {
@@ -1208,7 +1208,7 @@ export function createServer(memoryFilePath) {
1208
1208
  },
1209
1209
  {
1210
1210
  name: "get_orphaned_entities",
1211
- description: "Get entities that have no relations (orphaned entities). In strict mode, returns entities not connected to 'Self' entity. Results are paginated (max 512 chars).",
1211
+ description: "Get entities that have no relations (orphaned entities). In strict mode, returns entities not connected to 'Self' entity. Results are paginated (max 4096 chars).",
1212
1212
  inputSchema: {
1213
1213
  type: "object",
1214
1214
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levalicious/server-memory",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "MCP server for enabling memory for Claude through a knowledge graph",
5
5
  "license": "MIT",
6
6
  "author": "Levalicious",