@solid-design-system/mcp 0.0.1 → 6.27.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -1
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -1 +1,17 @@
1
- # Changelog
1
+ # Changelog
2
+
3
+ ## 6.27.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Add bin for MCP _[`0e89f8e`](https://github.com/solid-design-system/solid/commit/0e89f8eb5f745fd1114d65c5fad9c190c1081145) [@mariohamann](https://github.com/mariohamann)_
8
+
9
+ ## 6.27.0
10
+
11
+ ### Minor Changes
12
+
13
+ - Introduction of the new Solid Design System MCP package, which includes: _[`#3132`](https://github.com/solid-design-system/solid/pull/3132) [`a2a9c46`](https://github.com/solid-design-system/solid/commit/a2a9c463c70884666ab197f5402d6aa94d40231a) [@martascorreia](https://github.com/martascorreia)_
14
+ - tool entry points for components, styles, templates, quickstart, tokens, icon search, and version metadata;
15
+ - package-level documentation support and metadata-driven build outputs for MCP tools.
16
+
17
+ In the scope of this new package, documentation was also updated to improve component descriptions and addsummaries to all styles.
package/package.json CHANGED
@@ -20,9 +20,9 @@
20
20
  "prettier": "^3.8.1",
21
21
  "tsx": "^4.0.0",
22
22
  "typescript": "^5.9.3",
23
- "@solid-design-system/tokens": "6.26.0",
24
- "@solid-design-system/styles": "6.26.0",
25
- "@solid-design-system/components": "6.26.0"
23
+ "@solid-design-system/components": "6.27.1",
24
+ "@solid-design-system/tokens": "6.27.1",
25
+ "@solid-design-system/styles": "6.27.1"
26
26
  },
27
27
  "exports": {
28
28
  ".": {
@@ -59,7 +59,7 @@
59
59
  "directory": "packages/mcp"
60
60
  },
61
61
  "type": "module",
62
- "version": "0.0.1",
62
+ "version": "6.27.1",
63
63
  "scripts": {
64
64
  "build": "pnpm run build:components && pnpm run build:tokens && pnpm run build:ts && pnpm run build:metadata && cd ../.. && pnpm exec prettier --write --log-level warn packages/mcp/metadata",
65
65
  "build:components": "cd ../components && pnpm exec node scripts/make-metadata.js --outdir dist",
@@ -71,6 +71,7 @@
71
71
  "test": "node --import tsx/esm --test \"test/**/*.spec.ts\"",
72
72
  "verify:metadata": "git diff --exit-code -- metadata ':!metadata/packages/icons' || (echo '❌ Generated metadata is out of sync with source. Run \"pnpm build\" in packages/mcp and commit the resulting changes in metadata/.' && exit 1)",
73
73
  "verify": "pnpm build && echo '✅ Build verified' && pnpm run verify:metadata && echo '✅ Metadata verified' && pnpm test && echo '✅ Test verified'",
74
- "mcp:inspector": "cd packages/mcp && npx @modelcontextprotocol/inspector node dist/bin/start.js"
74
+ "mcp:inspector": "npx @modelcontextprotocol/inspector node dist/bin/start.js",
75
+ "postversion": "pnpm build"
75
76
  }
76
77
  }