Browse components, generate story variants, and audit accessibility — all from your AI chat. No copy-pasting. No context-switching.
What a conversation with Claude looks like after connecting the server.
Everything Claude needs to work with your component library.
Works with Claude Desktop and Claude Code out of the box.
Install globally via npm.
npm install -g @jonbai/mcp-storybook-bridge
Edit claude_desktop_config.json and add the server block:
{
"mcpServers": {
"storybook": {
"command": "npx",
"args": ["-y", "@jonbai/mcp-storybook-bridge"],
"env": {
"STORYBOOK_URL": "http://localhost:6006",
"ANTHROPIC_API_KEY": "sk-ant-..."
}
}
}
}
Run your Storybook on port 6006, then restart Claude Desktop. The 5 tools appear automatically.
claude mcp add storybook npx @jonbai/mcp-storybook-bridge \ -e STORYBOOK_URL=http://localhost:6006 \ -e ANTHROPIC_API_KEY=sk-ant-...