Back to Storybook

MCP server API

docs/ai/mcp/api.mdx

10.6.01.9 KB
Original Source
<Callout variant="info" icon="🧪">

Storybook's AI capabilities are in preview. The API may change in future releases. We welcome feedback and contributions to help improve this feature.

</Callout>

@storybook/addon-mcp options

The MCP server addon accepts the following options to configure the tools provided by the MCP server. You can provide these options when registering the addon in your main.js|ts file:

<CodeSnippets path="addon-mcp-options.md" />

toolsets

Type:

ts
{
  dev?: boolean;
  docs?: boolean;
  test?: boolean;
}

Default:

ts
{
  dev: true,
  docs: true,
  test: true,
}

Configuration object to toggle which toolsets are enabled in the MCP server. By default, all toolsets are enabled.

dev

Type: boolean

Default: true

The development toolset includes the stories-changed, get-storybook-story-instructions, stories-preview, stories-find-by-component, and review-create tools when their feature requirements are enabled.

docs

Type: boolean

Default: true

The docs toolset includes the docs-show, docs-show-story, and docs-list tools when a components manifest is generated for your framework.

test

Type: boolean

Default: true

The testing toolset includes the test-run tool when @storybook/addon-vitest is installed and enabled.

More AI resources