alus-ui-mcp 0.3.0 → 0.3.1
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 +20 -20
- package/dist/index.js +468 -379
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -18,13 +18,13 @@ Add to `.mcp.json` at your project root:
|
|
|
18
18
|
|
|
19
19
|
```json
|
|
20
20
|
{
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"alus-ui": {
|
|
23
|
+
"type": "stdio",
|
|
24
|
+
"command": "npx",
|
|
25
|
+
"args": ["alus-ui-mcp"]
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
28
|
}
|
|
29
29
|
```
|
|
30
30
|
|
|
@@ -34,24 +34,24 @@ The production Cloudflare deployment exposes `/mcp`. Point your client to:
|
|
|
34
34
|
|
|
35
35
|
```json
|
|
36
36
|
{
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
37
|
+
"mcpServers": {
|
|
38
|
+
"alus-ui": {
|
|
39
|
+
"url": "https://alus.lkmn.link/mcp"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
42
|
}
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
## Tools
|
|
46
46
|
|
|
47
|
-
| Tool
|
|
48
|
-
|
|
49
|
-
| `alus_list_components`
|
|
50
|
-
| `alus_get_component`
|
|
51
|
-
| `alus_search_components`
|
|
52
|
-
| `alus_get_component_demo` | Read showcase demo page
|
|
53
|
-
| `alus_list_exports`
|
|
54
|
-
| `alus_get_utils`
|
|
47
|
+
| Tool | Description |
|
|
48
|
+
| ------------------------- | -------------------------------------------- |
|
|
49
|
+
| `alus_list_components` | Browse all 150+ components by category |
|
|
50
|
+
| `alus_get_component` | Read full `.svelte` + `index.ts` source |
|
|
51
|
+
| `alus_search_components` | Full-text search across all source files |
|
|
52
|
+
| `alus_get_component_demo` | Read showcase demo page |
|
|
53
|
+
| `alus_list_exports` | Show full public API (`components/index.ts`) |
|
|
54
|
+
| `alus_get_utils` | Read a11y/form utility module source |
|
|
55
55
|
|
|
56
56
|
## License
|
|
57
57
|
|