@urbicon-ui/mcp-server 6.50.0 → 7.0.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": "6.50.0",
3
+ "version": "7.0.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.50.0",
43
- "@urbicon-ui/design-engine": "6.50.0",
42
+ "@urbicon-ui/design-content": "7.0.0",
43
+ "@urbicon-ui/design-engine": "7.0.0",
44
44
  "zod": "^4.3.6"
45
45
  },
46
46
  "devDependencies": {
@@ -1,15 +1,14 @@
1
1
  import type { ComponentCatalogEntry, RecipeEntry } from '../data/catalog-loader.js';
2
2
 
3
- const INTERNAL_COMPONENTS = new Set([
4
- 'ApiReference',
5
- 'CodeExample',
6
- 'DocsLayout',
7
- 'InfoCard',
8
- 'PlaygroundConfigurator',
9
- 'Section',
10
- 'TableOfContents',
11
- 'TypesReference'
12
- ]);
3
+ /**
4
+ * Belt to the assembler's braces: the shipped catalog is already filtered, but
5
+ * this server also reads catalogs it did not assemble.
6
+ *
7
+ * By package, never by a list of names. The list this replaces had already
8
+ * rotted — it carried eight of the nine docs components, having missed
9
+ * `CodePanel` when that one was added.
10
+ */
11
+ const INTERNAL_PACKAGE = '@urbicon-ui/docs';
13
12
 
14
13
  const TAG_ORDER = ['action', 'form', 'layout', 'feedback', 'navigation', 'display', 'data'];
15
14
 
@@ -31,7 +30,7 @@ const TAG_LABELS: Record<string, string> = {
31
30
  export function filterInternalComponents(
32
31
  components: ComponentCatalogEntry[]
33
32
  ): ComponentCatalogEntry[] {
34
- return components.filter((c) => !INTERNAL_COMPONENTS.has(c.name));
33
+ return components.filter((c) => c.package !== INTERNAL_PACKAGE);
35
34
  }
36
35
 
37
36
  /**