@urbicon-ui/mcp-server 6.49.0 → 6.51.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 +3 -1
- package/package.json +3 -3
- package/src/tools/get-checklist.ts +1 -1
- package/src/utils/format-catalog.ts +10 -11
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
|
|
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.
|
|
3
|
+
"version": "6.51.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.
|
|
43
|
-
"@urbicon-ui/design-engine": "6.
|
|
42
|
+
"@urbicon-ui/design-content": "6.51.0",
|
|
43
|
+
"@urbicon-ui/design-engine": "6.51.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
|
-
|
|
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 +=
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import type { ComponentCatalogEntry, RecipeEntry } from '../data/catalog-loader.js';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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) =>
|
|
33
|
+
return components.filter((c) => c.package !== INTERNAL_PACKAGE);
|
|
35
34
|
}
|
|
36
35
|
|
|
37
36
|
/**
|