Figma
Single source of truth for tokens and component frames. Variables sync to tokens.css.
Atelier workshop Design in Figma. Explore in Storybook. Ship with AI.
Teaching artifact · not a production library
Each tool reads the others through Model Context Protocol. Inspect → prompt → ship → iterate.
Single source of truth for tokens and component frames. Variables sync to tokens.css.
Per-framework live explorer. Each instance hosts an MCP MCP Model Context Protocol — a JSON-RPC standard that lets AI assistants call structured tools on external servers, instead of guessing from training data. In this workshop: three Storybook MCP servers expose component props to Claude Code. endpoint Claude can call.
Reads Figma + Storybook through MCP, writes spec-aligned code in Angular, React, or Vue.
Drop these into your Claude Code MCP config. Each Storybook endpoint exposes the same three docs tools — list-all-documentation, get-documentation, get-documentation-for-story; dev and test tools (preview-stories, run-story-tests) require a locally running Storybook with @storybook/addon-mcp.
{
"mcpServers": {
"storybook-angular": {
"type": "http",
"url": "https://atelier.pieper.io/storybook-angular/mcp"
},
"storybook-react": {
"type": "http",
"url": "https://atelier.pieper.io/storybook-react/mcp"
},
"storybook-vue": {
"type": "http",
"url": "https://atelier.pieper.io/storybook-vue/mcp"
}
}
} An Nx workspace with your framework choice, the component library wired up, and the MCP config pre-seeded.
npx create-atelier-ui-workspace