@urbicon-ui/mcp-server 8.7.0 → 8.9.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urbicon-ui/mcp-server",
3
- "version": "8.7.0",
3
+ "version": "8.9.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": "8.7.0",
43
- "@urbicon-ui/design-engine": "8.7.0",
42
+ "@urbicon-ui/design-content": "8.9.0",
43
+ "@urbicon-ui/design-engine": "8.9.0",
44
44
  "zod": "^4.3.6"
45
45
  },
46
46
  "devDependencies": {
@@ -27,7 +27,7 @@ export function registerGetChecklistTool(server: McpServer): void {
27
27
  md += '## Project Setup\n\n';
28
28
  md += '- [ ] Install: `bun add @urbicon-ui/blocks @urbicon-ui/i18n`\n';
29
29
  md +=
30
- "- [ ] Add CSS imports to your root layout or entry CSS — your app owns the Tailwind import and it MUST come first:\n ```css\n @import 'tailwindcss';\n @import '@urbicon-ui/blocks/style/index.css'; /* tokens + @source directives */\n @import '@urbicon-ui/table/style/index.css'; /* only if using Table */\n ```\n";
30
+ "- [ ] Add CSS imports to your root layout or entry CSS — your app owns the Tailwind import and it MUST come first:\n ```css\n @import 'tailwindcss';\n @import '@urbicon-ui/blocks/style/index.css'; /* tokens + @source directives */\n @import '@urbicon-ui/table/style/index.css'; /* only if using Table */\n @import '@urbicon-ui/auth/style/index.css'; /* only if using Auth */\n ```\n";
31
31
  md +=
32
32
  "- [ ] Import components from package root: `import { Button } from '@urbicon-ui/blocks'` (never from internal paths)\n";
33
33
  md +=