Atelier UI®

DocsCatalogShader StudioPricingGithub
Docs 1.0.0

tools

  • Browse Catalog
  • Shader Studio
    pro
  • Collage
    new

Documentation

  • How it works
  • License
  • MCP

Page Transition (04)

  • Clip Transition
  • Stripe Transition
  • Pixel Transition
  • Band Transition

Components (36)

  • Orbit Gallery
  • Sphere Gallery
  • Spiral Gallery
  • Glowing Fog
  • Gradient Flow
  • Halftone Glow
  • Scattered Grid
  • Tag Cloud
  • Edge Bounce
  • Fluid Distortion
  • Image Trail
  • Lens Media
  • Liquid Media
  • Magnetic Dot Grid
  • Pixel Media
  • Pixel Trail
  • Dither Cursor
  • Hover Burst
  • Image Bloom
  • Curve Media
  • Infinite Gallery
  • Infinite Parallax
  • Infinite Zoom
  • Pixel Scroll
  • Scattered Scroll
  • Elastic Stick
  • Letter Swarm
  • Magnify Trail
  • Stacking Grid
  • Wavy Scroll
  • Pixelated Text
  • Text Bounce
  • Text Fluid
  • Text Scramble
  • Falling Text
  • Text Roll

Foundation Blocks (07)

  • Smooth Scroll
  • Text Split
  • WebGL Image
  • WebGL Provider
  • WebGL Scene
  • WebGL Text
  • WebGL Video
Atelier UI 1.0.0 ©2026
Star on githubBuy me a coffeellms.txt
  1. Docs
  2. /
  3. Getting Started
  4. /
  5. Mcp

MCP

Install Atelier UI components from your coding agent with the shadcn MCP server.

  • Add the @atelier registry
  • Connect your agent
  • Learn more

Model Context Protocol (MCP) is an open standard that lets AI agents connect to external tools.

Atelier UI works with the shadcn MCP server, so your agent can search the catalog and install from a plain request instead of a copied prompt. None of this is needed to install a component.


Add the @atelier registry

The server finds Atelier through your components.json. Installing with a prompt writes it for you, but MCP comes before your first install, so you set it up by hand.

1. Create a components.json if you don't already have one:

Terminal
npx shadcn@latest init -d

2. Add the @atelier entry:

components.json
{
  "registries": {
    "@atelier": "https://www.atelier-ui.com/r/{name}.json"
  }
}

That entry covers the whole catalog and every free component. Pro components use the same entry with a license header, see license.


Connect your agent

Terminal
npx shadcn@latest mcp init --client claude

Restart Claude Code, then try prompts like:

Example prompts
- Install the sphere gallery from Atelier and fill it with my images

- Replace my hero image with Atelier's pixel media

- Set up Atelier's clip transition and explain how my routes and links need to change

- Show me the cursor effects available in the Atelier registry

- Explain to me how the scroll effect work with Aterlier

- Why does Atelier uses Motion instead of GSAP?
Terminal
npx shadcn@latest mcp init --client cursor

Open Cursor Settings, enable the shadcn MCP server, then try prompts like:

Example prompts
- Install the sphere gallery from Atelier and fill it with my images

- Replace my hero image with Atelier's pixel media

- Set up Atelier's clip transition and explain how my routes and links need to change

- Show me the cursor effects available in the Atelier registry

- Explain to me how the scroll effect work with Aterlier

- Why does Atelier uses Motion instead of GSAP?
Terminal
npx shadcn@latest mcp init --client vscode

Start the shadcn server from the MCP panel, then try prompts like:

Example prompts
- Install the sphere gallery from Atelier and fill it with my images

- Replace my hero image with Atelier's pixel media

- Set up Atelier's clip transition and explain how my routes and links need to change

- Show me the cursor effects available in the Atelier registry

- Explain to me how the scroll effect work with Aterlier

- Why does Atelier uses Motion instead of GSAP?
Terminal
npx shadcn@latest mcp init --client codex

Restart Codex, then try prompts like:

Example prompts
- Install the sphere gallery from Atelier and fill it with my images

- Replace my hero image with Atelier's pixel media

- Set up Atelier's clip transition and explain how my routes and links need to change

- Show me the cursor effects available in the Atelier registry

- Explain to me how the scroll effect work with Aterlier

- Why does Atelier uses Motion instead of GSAP?

Learn more

For manual setup, or a client not listed above, see the shadcn MCP documentation.

Star on githubBuy me a coffeellms.txt