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
Copy file name to clipboardExpand all lines: packages/addon-mcp/CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# @storybook/addon-mcp
2
2
3
+
## 0.3.4
4
+
5
+
### Patch Changes
6
+
7
+
-[#179](https://github.com/storybookjs/mcp/pull/179)[`ec300bd`](https://github.com/storybookjs/mcp/commit/ec300bd9bf76169f537ae3358418db8973628bcf) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Improve `/mcp` HTML response
8
+
9
+
-[#181](https://github.com/storybookjs/mcp/pull/181)[`ff217d8`](https://github.com/storybookjs/mcp/commit/ff217d8d901b3b6ec932613792df17118b452fe3) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Rename feature flag `experimentalComponentsManifest` → `componentsManifest`
10
+
11
+
The Storybook feature flag has been renamed from `experimentalComponentsManifest` to `componentsManifest` and now defaults to `true` in Storybook core.
Disabling the Dev Tools is useful when you want to try out the same experience that your external component consumers will get, because they only get the Component Documentation Tools.
These additional tools are available when the **experimental**component manifest feature is enabled. They provide agents with detailed documentation about your UI components.
175
+
These additional tools are available when the component manifest feature is enabled. They provide agents with detailed documentation about your UI components.
178
176
179
177
**Requirements:**
180
178
181
179
- Storybook version 10.1.0 or higher (currently only available as prereleases, `storybook@next`)
- Feature flag `features.experimentalComponentsManifest` set to `true` in `.storybook/main.js`
181
+
- Feature flag `features.componentsManifest` enabled (defaults to `true` in recent Storybook versions)
184
182
185
183
**To enable:**
186
184
185
+
The `componentsManifest` feature is enabled by default in recent Storybook versions — no configuration needed.
186
+
187
+
If you are on an older Storybook version that doesn't default to `true`, you may need to enable it explicitly. Use the flag that matches your Storybook version:
188
+
187
189
```javascript
188
190
// .storybook/main.js
189
191
exportdefault {
190
192
// ... other config
191
193
features: {
192
-
experimentalComponentsManifest:true,
194
+
// For Storybook 10.3.x and later:
195
+
componentsManifest:true,
196
+
// For older Storybook versions (before the flag was renamed):
`This toolset requires <code>@storybook/addon-vitest</code>. <a target="_blank" href="https://storybook.js.org/docs/writing-tests/test-addon">Learn how to set it up</a>`,
140
+
`This toolset requires Storybook 10.3.0+ with <code>@storybook/addon-vitest</code>. <a target="_blank" href="https://storybook.js.org/docs/writing-tests/test-addon">Learn how to set it up</a>`,
141
141
!a11yEnabled&&
142
142
`Add <code>@storybook/addon-a11y</code> for accessibility testing. <a target="_blank" href="https://storybook.js.org/docs/writing-tests/accessibility-testing">Learn more</a>`,
0 commit comments