schemeog-mcp 3.0.0 → 3.0.1
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/index.js +1 -1
- package/package.json +3 -2
package/index.js
CHANGED
|
@@ -1448,7 +1448,7 @@ URL: ${API_BASE_URL}/canvas?schema=${result.schema.id}
|
|
|
1448
1448
|
// Если указан file_path — читаем элементы из файла (обходит лимит Claude)
|
|
1449
1449
|
if (file_path) {
|
|
1450
1450
|
try {
|
|
1451
|
-
const fileContent =
|
|
1451
|
+
const fileContent = readFileSync(file_path, "utf-8");
|
|
1452
1452
|
fileSize = fileContent.length;
|
|
1453
1453
|
const parsedContent = JSON.parse(fileContent);
|
|
1454
1454
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "schemeog-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "MCP Server for Diagrams.love - Create and manage visual diagrams and flowcharts with AI assistance",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"url": "https://gitlab.com/serter2069/schemeog-cloud/-/issues"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
36
|
+
"google-auth-library": "^10.5.0"
|
|
36
37
|
},
|
|
37
38
|
"engines": {
|
|
38
39
|
"node": ">=18.0.0"
|