@urbicon-ui/mcp-server 6.49.0 → 6.50.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/README.md CHANGED
@@ -9,7 +9,9 @@ Model Context Protocol server for the Urbicon UI design system. Gives LLMs first
9
9
  > bundle (`@urbicon-ui/design-content`), kept for the launch decision of hosting a public
10
10
  > endpoint (evaluation/reach: "point your agent at Urbicon without installing anything").
11
11
  > It is deliberately absent from the public docs until that endpoint exists, and a local
12
- > install is **not** a supported consumer path (see docs/internal/DESIGN-MCP-V2.md §11).
12
+ > install is **not** a supported consumer path: manifest read/write is a working-directory
13
+ > concern and lives in the CLI, so a locally installed copy of this stateless server would
14
+ > offer strictly less than the dev-dependency it duplicates.
13
15
 
14
16
  **Transports:** stdio (default, for in-repo development) and streamable HTTP (the intended remote deployment).
15
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urbicon-ui/mcp-server",
3
- "version": "6.49.0",
3
+ "version": "6.50.0",
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": {
@@ -39,8 +39,8 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@modelcontextprotocol/sdk": "^1.30.0",
42
- "@urbicon-ui/design-content": "6.49.0",
43
- "@urbicon-ui/design-engine": "6.49.0",
42
+ "@urbicon-ui/design-content": "6.50.0",
43
+ "@urbicon-ui/design-engine": "6.50.0",
44
44
  "zod": "^4.3.6"
45
45
  },
46
46
  "devDependencies": {
@@ -93,7 +93,7 @@ export function registerGetChecklistTool(server: McpServer): void {
93
93
  md +=
94
94
  '- [ ] Spacing varies: tight (`gap-2`/`gap-3`) within related items, generous (`gap-8`/`gap-10`) between sections — not uniform everywhere\n';
95
95
  md +=
96
- "- [ ] Border-radius follows a deliberate strategy overridden via `class` or `slotClasses` where component defaults don't match the design identity\n";
96
+ '- [ ] Shape is decided at the tier, not per element if the default family radii don\'t match the design identity, retune `--radius-commit`/`-modify`/`-contain` together in the theme (containers never tighter than what sits inside them). A `class="rounded-*"` on a single component splits its family\n';
97
97
  md +=
98
98
  '- [ ] Data-driven styling: different states/severities are visually distinct through padding, font-weight, Badge `variant`, and text color — not just labels\n';
99
99
  md +=