@urbicon-ui/mcp-server 8.22.0 → 8.23.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 +7 -4
- package/package.json +3 -3
- package/src/tools/find-icons.ts +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Runtime dependencies: `@modelcontextprotocol/sdk`, `zod`.
|
|
|
35
35
|
|
|
36
36
|
## Quick Start
|
|
37
37
|
|
|
38
|
-
### Stdio (
|
|
38
|
+
### Stdio (in-repo)
|
|
39
39
|
|
|
40
40
|
From the repo root:
|
|
41
41
|
|
|
@@ -56,9 +56,12 @@ bun run mcp:start:http
|
|
|
56
56
|
# listens on http://localhost:3001 with streamable transport
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
-
###
|
|
59
|
+
### Point a local MCP client at the in-repo server (development)
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
For working **on** this server: the entry below runs it from a checkout of this
|
|
62
|
+
repo, not from an installed package, and it is not a consumer path — consumers
|
|
63
|
+
use the `urbicon` CLI. Add to `~/.claude/mcp.json` (or project
|
|
64
|
+
`.claude/mcp.json`):
|
|
62
65
|
|
|
63
66
|
```json
|
|
64
67
|
{
|
|
@@ -97,7 +100,7 @@ All tools are read-only (`readOnlyHint: true`) — this server never touches the
|
|
|
97
100
|
| `urbicon://catalog` | Full component catalog in Markdown — used as the LLM's default context |
|
|
98
101
|
| `urbicon://guide/api-grammar` | Canonical prop conventions (`intent`, `variant`, `size`, callbacks) |
|
|
99
102
|
| `urbicon://guide/design-quality` | AVOID/INSTEAD design-quality patterns — spacing, hierarchy, colour and shape discipline |
|
|
100
|
-
| `urbicon://guide/component-families` |
|
|
103
|
+
| `urbicon://guide/component-families` | The families COMPONENT-FAMILIES.md lists - ARIA roles, per-family border-token source |
|
|
101
104
|
| `urbicon://guide/customization` | `unstyled` / `slotClasses` / `preset` override system + `BlocksProvider` overrides |
|
|
102
105
|
| `urbicon://guide/auth` | Complete auth reference - served verbatim from the bundled, tarball-canonical `AUTH.md` |
|
|
103
106
|
| `urbicon://guide/style-patterns` | Reusable style presets and composition templates |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@urbicon-ui/mcp-server",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.23.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.
|
|
43
|
-
"@urbicon-ui/design-engine": "8.
|
|
42
|
+
"@urbicon-ui/design-content": "8.23.0",
|
|
43
|
+
"@urbicon-ui/design-engine": "8.23.0",
|
|
44
44
|
"zod": "^4.5.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
package/src/tools/find-icons.ts
CHANGED
|
@@ -52,7 +52,7 @@ export function registerFindIconsTool(server: McpServer): void {
|
|
|
52
52
|
md += '<Icon name="search" />\n';
|
|
53
53
|
md += '```\n\n';
|
|
54
54
|
md +=
|
|
55
|
-
'**Props:** `size` (default
|
|
55
|
+
'**Props:** `size` (px; default `1em` — the font size of the surrounding text), `strokeWidth` (default 2), `class`, `rotate`, `flip`, `animation`\n\n';
|
|
56
56
|
md += '---\n\n';
|
|
57
57
|
|
|
58
58
|
for (const cat of ICON_CATEGORY_ORDER) {
|