
Getting Started
Set up Efecto with Claude Code
Get an AI agent designing pages for you in 5 minutes. No coding experience needed.
What You Need
- Node.js — runs the tools behind the scenes
- Claude Code — the AI agent that designs for you
- Efecto MCP — gives Claude the design tools
Don't worry if you don't have these yet — we'll install each one below.
Setup
Open Terminal
Terminal is a text-based interface that comes built into your Mac. It's how you'll run the install commands below.
Press Cmd + Space to open Spotlight, type Terminal, and hit Enter.
Terminal might look intimidating, but you'll only need to paste a few commands. We'll tell you exactly what to type.
Install Node.js
Node.js powers the tools behind the scenes. You only need to install it once.
- Go to nodejs.org
- Click Get Node.js
- Open the downloaded file and follow the installer
Install Claude Code
Claude Code is the AI agent that will design pages for you. Paste this into Terminal:
npm install -g @anthropic-ai/claude-codeVerify it worked:
claude --versionOn Windows? See the Claude Code docs for platform-specific setup.
Install Efecto MCP
This gives Claude the design tools it needs. Paste this into Terminal:
npx @efectoapp/mcp installYou'll see a success message when it's done.
Run Claude Code
Open Claude Code with this command:
claude --dangerously-skip-permissionsThe --dangerously-skip-permissions flag lets Claude work without stopping to ask permission on every step, so it can build your design in one go.
This skips all permission prompts — great for Efecto, but use it with care for other tasks since Claude will be able to read and write files on your machine without asking.
Make your first design
Type a prompt describing what you want. Make sure to mention "in Efecto" — that's how Claude knows to use the design tool.
Design a landing page for a coffee shop in EfectoClaude will open Efecto in your browser and build the page in real-time.
That's it! You can now ask Claude to design anything — landing pages, app screens, dashboards, portfolios, and more. Just remember to say "in Efecto".
Troubleshooting
"command not found: node" or "command not found: npx"
Node.js isn't installed or Terminal needs a restart. Install Node.js from Step 2, then close and reopen Terminal.
"command not found: claude"
Claude Code isn't installed. Go back to Step 3 and run the install command.
Permission errors
Try adding sudo before the command, e.g. sudo npm install -g @anthropic-ai/claude-code
Next Steps
- Explore all 39 design tools available to Claude
- Read the MCP setup docs for advanced configuration