You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Getting Started, Knowledge Base (styling, i18n, SSR, slots, FAQ, accessibility, and more), project templates
35
35
- Full content read from bundled local files (no network required)
36
36
- Line-range support (`startLine`/`endLine`) for large documents
37
37
@@ -47,7 +47,28 @@ This MCP server gives AI assistants direct access to UI5 Web Components for Reac
47
47
48
48
## Setup
49
49
50
-
> **Note:** This package is not yet published to npm. See [Local Development with Claude Code](#local-development-with-claude-code) for how to use it locally.
50
+
This server is available in the [MCP Registry](https://registry.modelcontextprotocol.io/servers/io.github.UI5/webcomponents-react-mcp-server), which allows compatible clients to install it directly.
51
+
52
+
### Claude Code
53
+
54
+
```bash
55
+
claude mcp add ui5-wcr -- npx @ui5/webcomponents-react-mcp
56
+
```
57
+
58
+
### VS Code / Cursor
59
+
60
+
Add to `.vscode/mcp.json`:
61
+
62
+
```json
63
+
{
64
+
"servers": {
65
+
"ui5-wcr": {
66
+
"command": "npx",
67
+
"args": ["@ui5/webcomponents-react-mcp"]
68
+
}
69
+
}
70
+
}
71
+
```
51
72
52
73
## Usage
53
74
@@ -60,18 +81,16 @@ Once configured, your AI assistant will have access to the tools. You can ask qu
60
81
61
82
**Documentation:**
62
83
63
-
- "Show me the FAQ"
64
-
- "How do I get started with UI5 Web Components for React?"
0 commit comments