cortex-mcp 2.7.4 → 2.7.5
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/mcp-handler.js +0 -34
- package/package.json +1 -1
|
@@ -357,40 +357,6 @@ const MCP_TOOLS = [
|
|
|
357
357
|
properties: {},
|
|
358
358
|
},
|
|
359
359
|
},
|
|
360
|
-
{
|
|
361
|
-
name: 'export_memories',
|
|
362
|
-
description: 'Export ALL memories to a JSON file on disk. Use this to back up your project knowledge, share it with teammates, or migrate to a new machine. The JSON file can later be imported with import_memories.',
|
|
363
|
-
inputSchema: {
|
|
364
|
-
type: 'object',
|
|
365
|
-
properties: {
|
|
366
|
-
filePath: { type: 'string', description: 'Full path where the export JSON should be saved (e.g. /Users/me/cortex-backup.json)' },
|
|
367
|
-
},
|
|
368
|
-
required: ['filePath'],
|
|
369
|
-
},
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
name: 'import_memories',
|
|
373
|
-
description: 'Import memories from a previously exported JSON file. Skips duplicates automatically. Use this to restore a backup or share project knowledge with a teammate.',
|
|
374
|
-
inputSchema: {
|
|
375
|
-
type: 'object',
|
|
376
|
-
properties: {
|
|
377
|
-
filePath: { type: 'string', description: 'Full path to the cortex export JSON file to import' },
|
|
378
|
-
},
|
|
379
|
-
required: ['filePath'],
|
|
380
|
-
},
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
name: 'get_related_memories',
|
|
384
|
-
description: 'Follow the graph of memory relationships to find connected memories. Given a memory ID, traverses CAUSED_BY, FIXED_BY, RELATED_TO, and DEPENDS_ON edges to surface related context you might not have found with search.',
|
|
385
|
-
inputSchema: {
|
|
386
|
-
type: 'object',
|
|
387
|
-
properties: {
|
|
388
|
-
id: { type: 'string', description: 'ID of the starting memory (from recall_memory or list_memories)' },
|
|
389
|
-
maxHops: { type: 'number', description: 'How many relationship hops to traverse (default 2, max 4)' },
|
|
390
|
-
},
|
|
391
|
-
required: ['id'],
|
|
392
|
-
},
|
|
393
|
-
},
|
|
394
360
|
];
|
|
395
361
|
// --- Dynamic Context via ContextBuilder ---
|
|
396
362
|
let cachedContextBuilder = null;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "cortex-mcp",
|
|
3
3
|
"displayName": "Cortex MCP Server",
|
|
4
4
|
"description": "Persistent memory for AI coding assistants. Injects context from past sessions into every LLM request.",
|
|
5
|
-
"version": "2.7.
|
|
5
|
+
"version": "2.7.5",
|
|
6
6
|
"publisher": "cortex",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"engines": {
|