@lumeo-ui/mcp-server 2.0.0 → 2.1.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.
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/src/components-api.json +1267 -370
- package/src/registry.json +89 -8
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* Lumeo MCP Server v2.0.
|
|
3
|
+
* Lumeo MCP Server v2.0.1
|
|
4
4
|
*
|
|
5
|
-
* Source-of-truth schema for ALL
|
|
5
|
+
* Source-of-truth schema for ALL Lumeo components, generated at build time
|
|
6
6
|
* by `tools/Lumeo.RegistryGen` from the actual Razor source via Roslyn. Every
|
|
7
7
|
* component now ships full parameter / enum / event / sub-component metadata —
|
|
8
8
|
* no thin/rich split, no manual catalog drift.
|
|
@@ -335,7 +335,7 @@ function validateMarkup(markup) {
|
|
|
335
335
|
// ───────────────── Server setup ─────────────────
|
|
336
336
|
const server = new Server({
|
|
337
337
|
name: "lumeo-mcp",
|
|
338
|
-
version: "2.0.
|
|
338
|
+
version: "2.0.1",
|
|
339
339
|
}, {
|
|
340
340
|
capabilities: {
|
|
341
341
|
tools: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Model Context Protocol server for the Lumeo Blazor component library. Lets LLMs (Claude, Copilot, Cursor) author correct Lumeo markup.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|