@mentagen/mcp 0.8.2 → 0.8.3
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/client/types.js +0 -2
- package/dist/tools/create.js +0 -1
- package/dist/tools/size-calc.js +0 -1
- package/dist/tools/update.js +0 -2
- package/package.json +2 -2
package/dist/client/types.js
CHANGED
|
@@ -8,7 +8,6 @@ export const EdgeDirection = {
|
|
|
8
8
|
Target: 'target',
|
|
9
9
|
};
|
|
10
10
|
export const NodeType = {
|
|
11
|
-
Text: 'text',
|
|
12
11
|
Markdown: 'markdown',
|
|
13
12
|
Code: 'code',
|
|
14
13
|
Image: 'image',
|
|
@@ -22,6 +21,5 @@ export const NodeType = {
|
|
|
22
21
|
AIChat: 'ai-chat',
|
|
23
22
|
AIQuiz: 'ai-quiz',
|
|
24
23
|
File: 'file',
|
|
25
|
-
Excalidraw: 'excalidraw',
|
|
26
24
|
Teleprompter: 'teleprompter',
|
|
27
25
|
};
|
package/dist/tools/create.js
CHANGED
package/dist/tools/size-calc.js
CHANGED
package/dist/tools/update.js
CHANGED
|
@@ -7,10 +7,8 @@ import { calculateNodeSize } from './size-calc.js';
|
|
|
7
7
|
/**
|
|
8
8
|
* Node types that can be converted between safely.
|
|
9
9
|
* These are text-based types where content can be migrated without data loss.
|
|
10
|
-
* Note: text nodes are accepted for conversion (legacy) but MCP only creates markdown.
|
|
11
10
|
*/
|
|
12
11
|
const CONVERTIBLE_TYPES = [
|
|
13
|
-
NodeType.Text,
|
|
14
12
|
NodeType.Markdown,
|
|
15
13
|
NodeType.Code,
|
|
16
14
|
NodeType.URL,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mentagen/mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "MCP server for Mentagen knowledge base integration with Cursor",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "dist/index.js",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
"node": ">=18"
|
|
46
46
|
},
|
|
47
47
|
"resolutions": {
|
|
48
|
-
"tar": "^7.5.
|
|
48
|
+
"tar": "^7.5.7"
|
|
49
49
|
}
|
|
50
50
|
}
|