@urbicon-ui/mcp-server 6.19.0 → 6.19.2

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/README.md CHANGED
@@ -84,6 +84,9 @@ All tools are read-only (`readOnlyHint: true`) — this server never touches the
84
84
  | `urbicon://catalog` | Full component catalog in Markdown — used as the LLM's default context |
85
85
  | `urbicon://guide/api-grammar` | Canonical prop conventions (`intent`, `variant`, `size`, callbacks) |
86
86
  | `urbicon://guide/design-quality` | AVOID/INSTEAD patterns from A/B-tested design-quality guidance (+33.8 % improvement in user study) |
87
+ | `urbicon://guide/component-families` | Six-family component taxonomy - ARIA roles and per-family border-token source |
88
+ | `urbicon://guide/customization` | `unstyled` / `slotClasses` / `preset` override system + `BlocksProvider` overrides |
89
+ | `urbicon://guide/auth-setup` | Auth package setup - handler factories, handle hook, adapter pattern, client stores |
87
90
  | `urbicon://guide/style-patterns` | Reusable style presets and composition templates |
88
91
  | `urbicon://guide/tokens` | OKLCH token reference, same data as `get_css_reference` |
89
92
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urbicon-ui/mcp-server",
3
- "version": "6.19.0",
3
+ "version": "6.19.2",
4
4
  "description": "Model Context Protocol server exposing the Urbicon UI component catalog, recipes and design intelligence to LLM agents",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -32,8 +32,8 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@modelcontextprotocol/sdk": "^1.29.0",
35
- "@urbicon-ui/design-content": "6.19.0",
36
- "@urbicon-ui/design-engine": "6.19.0",
35
+ "@urbicon-ui/design-content": "6.19.2",
36
+ "@urbicon-ui/design-engine": "6.19.2",
37
37
  "zod": "^4.3.6"
38
38
  },
39
39
  "devDependencies": {
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * The eval-suite design briefs — the standing benchmark for "does a change to the
3
3
  * design layers actually improve generation, or just lengthen the context?"
4
- * (docs/DESIGN-MCP.md, cross-cutting eval). Systematises earlier one-off
4
+ * (docs/internal/DESIGN-MCP.md, cross-cutting eval). Systematises earlier one-off
5
5
  * design-quality comparisons into a repeatable set.
6
6
  *
7
7
  * Each brief is generated under two conditions (baseline vs. design-MCP loop),
package/src/eval/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Public API of the eval-suite (docs/DESIGN-MCP.md, cross-cutting eval). The
2
+ * Public API of the eval-suite (docs/internal/DESIGN-MCP.md, cross-cutting eval). The
3
3
  * briefs and the deterministic scorer are reusable across runs; the LLM
4
4
  * generation and rubric judging are injected by whoever drives a run (an agent
5
5
  * harness this round, an API loop later) so the suite stays automation-friendly.