Best for
- Frontend teams already using Storybook who want AI agents to help draft or test component stories
- Developers using Claude Code or Codex who want ready-made Storybook integration
An officially maintained (storybookjs) MCP addon that runs inside the Storybook dev server, exposing component data over streamable-http so AI agents can write and validate stories; still experimental and only useful for local Storybook-based projects.
Storybook MCP Addon (npm package @storybook/addon-mcp) is maintained by storybookjs, the official Storybook GitHub organization. It runs an MCP server as part of your local Storybook dev server, exposing component information and development workflows over streamable-http at http://localhost:6006/mcp (port configurable via a --port argument). This lets AI agents read component documentation, author new stories, and verify how they render. The monorepo also ships companion Claude Code and Codex plugins that auto-configure this MCP server. The README notes the project is experimental and under active development, so APIs and architecture may change.
npm install --save-dev @storybook/addon-mcp (or pnpm/yarn), then include @storybook/addon-mcp in the addons list of .storybook/main.ts.pnpm storybook); the MCP server runs alongside it, listening by default at http://localhost:6006/mcp.claude plugin marketplace add storybookjs/mcp@main) to have the MCP connection configured automatically.{"mcpServers":{"storybook":{"type":"streamable-http","url":"http://localhost:6006/mcp"}}}