@thesage/mcp 0.2.0 → 0.3.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 +13 -13
- package/dist/index.js +639 -10
- package/dist/index.mjs +639 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @thesage/mcp
|
|
2
2
|
|
|
3
|
-
**Model Context Protocol server for Sage
|
|
3
|
+
**Model Context Protocol server for Sage Design Engine**
|
|
4
4
|
|
|
5
|
-
Enable AI assistants like Claude Desktop, Cursor, and VS Code to browse, search, and install Sage
|
|
5
|
+
Enable AI assistants like Claude Desktop, Cursor, and VS Code to browse, search, and install Sage Design Engine components directly through natural language.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
@@ -17,11 +17,11 @@ Enable AI assistants like Claude Desktop, Cursor, and VS Code to browse, search,
|
|
|
17
17
|
### Quick Start
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
pnpm add -D @
|
|
20
|
+
pnpm add -D @thesage/mcp
|
|
21
21
|
# or
|
|
22
|
-
npm install --save-dev @
|
|
22
|
+
npm install --save-dev @thesage/mcp
|
|
23
23
|
# or
|
|
24
|
-
yarn add -D @
|
|
24
|
+
yarn add -D @thesage/mcp
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
### MCP Client Configuration
|
|
@@ -35,7 +35,7 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
|
35
35
|
"mcpServers": {
|
|
36
36
|
"sds": {
|
|
37
37
|
"command": "npx",
|
|
38
|
-
"args": ["@
|
|
38
|
+
"args": ["@thesage/mcp"]
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -52,7 +52,7 @@ Add to `.cursor/mcp.json` in your project:
|
|
|
52
52
|
"mcpServers": {
|
|
53
53
|
"sds": {
|
|
54
54
|
"command": "npx",
|
|
55
|
-
"args": ["@
|
|
55
|
+
"args": ["@thesage/mcp"]
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -67,7 +67,7 @@ Add to `.vscode/mcp.json`:
|
|
|
67
67
|
"servers": {
|
|
68
68
|
"sds": {
|
|
69
69
|
"command": "npx",
|
|
70
|
-
"args": ["@
|
|
70
|
+
"args": ["@thesage/mcp"]
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
}
|
|
@@ -85,7 +85,7 @@ List all available components, optionally filtered by category.
|
|
|
85
85
|
- `category` (optional): Filter by `actions`, `forms`, `navigation`, `overlays`, `feedback`, `data-display`, or `layout`
|
|
86
86
|
|
|
87
87
|
**Example AI prompts:**
|
|
88
|
-
- "Show me all Sage
|
|
88
|
+
- "Show me all Sage Design Engine components"
|
|
89
89
|
- "List all form components"
|
|
90
90
|
- "What overlay components are available?"
|
|
91
91
|
|
|
@@ -127,7 +127,7 @@ Get installation instructions for a component.
|
|
|
127
127
|
|
|
128
128
|
## Component Categories
|
|
129
129
|
|
|
130
|
-
The Sage
|
|
130
|
+
The Sage Design Engine organizes components functionally (not atomically):
|
|
131
131
|
|
|
132
132
|
- **Actions** (3) - Interactive elements that trigger behaviors
|
|
133
133
|
- **Forms** (11) - Input controls for data collection
|
|
@@ -143,7 +143,7 @@ Once configured, you can interact with the server through your AI assistant:
|
|
|
143
143
|
|
|
144
144
|
### Browse Components
|
|
145
145
|
|
|
146
|
-
> "Show me all components in the Sage
|
|
146
|
+
> "Show me all components in the Sage Design Engine"
|
|
147
147
|
|
|
148
148
|
The AI will use `list_components` to display all 89 components organized by category.
|
|
149
149
|
|
|
@@ -220,4 +220,4 @@ MIT © Shalom Ormsby
|
|
|
220
220
|
|
|
221
221
|
---
|
|
222
222
|
|
|
223
|
-
**Part of the [Sage
|
|
223
|
+
**Part of the [Sage Design Engine](https://thesage.dev/) - Build lovable products at AI speed.**
|