Add SnapUI to your AI agent in under a minute. Pick your tool below and paste the config.
SnapUI ships as an MCP server — a lightweight process your AI agent launches locally. It connects to the SnapUI API and gives your agent access to every UI kit in the catalog.
Once installed, tell your agent to use a UI kit by its ID (e.g. noir) and it will pull the spec and build to match.
Anthropic's CLI agent for the terminal.
claude mcp add --transport stdio --scope user \ --env SNAPUI_API_URL=https://snapui.xyz \ snapui -- npx -y snapui-kits
Anthropic's desktop app for macOS and Windows.
{ "mcpServers": { "snapui": { "command": "npx", "args": ["-y", "snapui-kits"], "env": { "SNAPUI_API_URL": "https://snapui.xyz" } } } }
AI-first code editor with built-in MCP support.
{ "mcpServers": { "snapui": { "command": "npx", "args": ["-y", "snapui-kits"], "env": { "SNAPUI_API_URL": "https://snapui.xyz" } } } }
Codeium's AI-powered IDE.
{ "mcpServers": { "snapui": { "command": "npx", "args": ["-y", "snapui-kits"], "env": { "SNAPUI_API_URL": "https://snapui.xyz" } } } }
GitHub Copilot (Agent mode) in VS Code 1.99+.
{ "servers": { "snapui": { "type": "stdio", "command": "npx", "args": ["-y", "snapui-kits"], "env": { "SNAPUI_API_URL": "https://snapui.xyz" } } } }
Autonomous coding agent (VS Code extension).
{ "mcpServers": { "snapui": { "command": "npx", "args": ["-y", "snapui-kits"], "env": { "SNAPUI_API_URL": "https://snapui.xyz" } } } }
Open-source AI assistant for VS Code and JetBrains.
mcpServers: - name: snapui command: npx args: - "-y" - snapui-kits env: SNAPUI_API_URL: https://snapui.xyz