schemeog-mcp 3.7.1 → 3.8.0

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/index.js +6 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * SchemeOG MCP Server v3.7.0
4
+ * SchemeOG MCP Server v3.8.0
5
5
  *
6
6
  * MCP сервер для работы со схемами, проектами и тегами в SchemeOG Cloud.
7
7
  *
@@ -434,6 +434,11 @@ function normalizeElements(elements) {
434
434
  fixed.asciiContent = el.asciiContent;
435
435
  }
436
436
 
437
+ // HTML Content — для type: "html" (HTML+CSS контент с изолированными стилями)
438
+ if (el.htmlContent) {
439
+ fixed.htmlContent = el.htmlContent;
440
+ }
441
+
437
442
  // КРИТИЧНО: Извлекаем connections из элемента (локальный формат)
438
443
  // и конвертируем в формат сервера {from, to, label}
439
444
  if (el.connections && Array.isArray(el.connections)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "schemeog-mcp",
3
- "version": "3.7.1",
3
+ "version": "3.8.0",
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",