@redsift/ds-mcp-server 12.5.3-alpha.1 → 12.5.3-alpha.3
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 +43 -1
- package/data/docs/components.json +1 -1
- package/data/docs/llms-full.txt +1 -1
- package/data/metadata.json +2 -2
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -2,7 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
A [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) server that gives AI assistants deep knowledge of the Red Sift Design System. It provides tools for component search, prop documentation, code generation, design token lookup, and composition pattern guidance.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Install from public npm
|
|
6
|
+
|
|
7
|
+
The published package is available on the public npm registry. No `.npmrc` configuration or authentication is required:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @redsift/ds-mcp-server
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or add it to an AI client's MCP configuration (e.g. VS Code, Claude Desktop) as a stdio server invoking `npx @redsift/ds-mcp-server`.
|
|
14
|
+
|
|
15
|
+
### Internal alternative: GitHub Packages
|
|
16
|
+
|
|
17
|
+
The same versions are also published to GitHub Packages for internal consumers. To install from there, configure an `.npmrc` with the `@redsift` scope mapped to `https://npm.pkg.github.com` and authenticate with a GitHub Personal Access Token that has `read:packages`:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
@redsift:registry=https://npm.pkg.github.com
|
|
21
|
+
//npm.pkg.github.com/:_authToken=${GITHUB_PAT}
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Local development
|
|
6
25
|
|
|
7
26
|
```bash
|
|
8
27
|
# From the design-system repo root:
|
|
@@ -201,3 +220,26 @@ Or verify in VS Code by opening Copilot Chat and asking:
|
|
|
201
220
|
|
|
202
221
|
- "Search for button components in the design system" → should call `search_components`
|
|
203
222
|
- "What props does DataGrid accept?" → should call `get_component_props`
|
|
223
|
+
|
|
224
|
+
## Releasing
|
|
225
|
+
|
|
226
|
+
The MCP server is published to two registries. Both publishes are required to keep them in sync.
|
|
227
|
+
|
|
228
|
+
1. **GitHub Packages (CI).** Trigger [`.github/workflows/publish-mcp.yml`](../../.github/workflows/publish-mcp.yml) via the Actions UI.
|
|
229
|
+
2. **Public npm (manual).** From a clean checkout of the merged release branch:
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
npm whoami --registry=https://registry.npmjs.org # confirm logged in
|
|
233
|
+
cd apps/mcp-server
|
|
234
|
+
npm pack --dry-run # inspect tarball file list
|
|
235
|
+
npm publish # real publish
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
`prepublishOnly` runs `bundle-data` and `build` automatically, so `dist/` and `data/` are guaranteed fresh. The `files` allowlist in `package.json` ensures only `dist/`, `data/`, and `consumer-instructions/` are shipped.
|
|
239
|
+
|
|
240
|
+
After both publishes, verify with:
|
|
241
|
+
|
|
242
|
+
```bash
|
|
243
|
+
npm view @redsift/ds-mcp-server --registry=https://registry.npmjs.org
|
|
244
|
+
npm view @redsift/ds-mcp-server --registry=https://npm.pkg.github.com
|
|
245
|
+
```
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"name": "Red Sift Design System",
|
|
4
4
|
"version": "12.3.0",
|
|
5
|
-
"generated": "2026-
|
|
5
|
+
"generated": "2026-05-06T10:03:18.593Z",
|
|
6
6
|
"repository": "https://github.com/redsift/design-system",
|
|
7
7
|
"documentation": "https://design-system.redsift.io",
|
|
8
8
|
"packages": [
|
package/data/docs/llms-full.txt
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
This file contains comprehensive documentation for all components in the Red Sift Design System.
|
|
4
4
|
It is optimized for LLM consumption and includes props, types, defaults, and usage examples.
|
|
5
5
|
|
|
6
|
-
Generated: 2026-
|
|
6
|
+
Generated: 2026-05-06T10:03:18.577Z
|
|
7
7
|
Total Components: 228
|
|
8
8
|
|
|
9
9
|
---
|
package/data/metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redsift/ds-mcp-server",
|
|
3
|
-
"version": "12.5.3-alpha.
|
|
3
|
+
"version": "12.5.3-alpha.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "MCP server for the Red Sift Design System — provides component lookup, prop documentation, and code generation tools for AI assistants.",
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
"typescript": "^5.8.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
|
-
"access": "
|
|
37
|
-
}
|
|
38
|
-
"gitHead": "718509e57d7a4e696a6735bce3db7539f74854a4"
|
|
36
|
+
"access": "public"
|
|
37
|
+
}
|
|
39
38
|
}
|