Framer 3.0 — AI Agents for Visual Web Design
What it is
Framer 3.0 (June 16, 2026) brings AI agents directly into the Framer canvas. Two modes:
- Framer Agents (canvas-native) — AI works inside Framer, generating pages, writing code components, managing CMS, auditing SEO/accessibility
- External Agents — Claude Code, Cursor, Codex, and other AI tools connect directly to Framer projects (no separate MCP setup needed)
Also: Branching for team collaboration — isolated branches, review, compare, merge approved changes.
AI Credits
| Plan |
Credits |
Reset |
Roughly |
| Free |
500 |
Daily |
~2 landing pages |
| Basic |
1,000 |
Monthly |
~5 landing pages |
| Pro |
3,000 |
Monthly |
~10 landing pages |
Editor seats: $20/mo (halved from $40).
What Framer Agents Can Do
- Generate pages from scratch
- Generate designs from screenshots
- Handle responsive breakpoints
- Design within existing pages
- Create layouts and sections
- Organize color and text styles
- Add effects and interactions
- Write custom code components (React)
- Write and improve content
- Import and organize content
- Generate SEO metadata
- Manage CMS collections
- Create CMS detail pages
- Audit for broken links
- Audit accessibility issues
- Audit inconsistent styling
External Agents Setup
Connect Claude Code, Cursor, or Codex without separate MCP setup:
- Open Framer project → Settings → External Agents
- Copy the connection string
- Paste into your AI tool's configuration
External agents get access to the same canvas, CMS, styles, and publishing workflow.
Open-Source MCP Server (alternative)
For custom setups, use the community MCP server:
{
"mcpServers": {
"framer": {
"command": "npx",
"args": ["-y", "framer-mcp-server"],
"env": {
"FRAMER_PROJECT_URL": "https://framer.com/projects/YourProject--abc123",
"FRAMER_API_KEY": "fr_your_api_key_here"
}
}
}
}
MCP Tools (community server)
- CMS: list/get/add/remove collection items, get field schemas
- Design: read page structure, apply canvas changes via DSL
- Code: list/get/set code component files (React)
- Preview: generate local HTML preview, publish deployments
- Undo: all write operations snapshot previous state for rollback
When to Use
- Building marketing sites, landing pages, portfolios
- Teams that need visual design + AI assistance
- When you want AI to work inside a visual canvas (not just generate code)
- Rapid prototyping with design fidelity
Pitfalls
- Complex web apps with custom logic/deeply nested components may need manual intervention
- Agent occasionally produces templated layouts despite respecting style systems
- AI credits consumed per agent action — monitor usage on high-iteration tasks
- External Agents is Framer-native (not open MCP) — locked to Framer's connection method
- Community MCP server is third-party, not official Framer
Version
Framer 3.0, released June 16, 2026. All plans.
1---2name: agentic-webdesign-framer3description: Use Framer 3.0 Agents and External Agents — AI-driven website building, design, and CMS management from Claude Code, Cursor, and Codex. Canvas-native agents generate pages, designs, layouts, code components, and run audits.4---56# Framer 3.0 — AI Agents for Visual Web Design78## What it is9Framer 3.0 (June 16, 2026) brings AI agents directly into the Framer canvas. Two modes:101. **Framer Agents** (canvas-native) — AI works inside Framer, generating pages, writing code components, managing CMS, auditing SEO/accessibility112. **External Agents** — Claude Code, Cursor, Codex, and other AI tools connect directly to Framer projects (no separate MCP setup needed)1213Also: **Branching** for team collaboration — isolated branches, review, compare, merge approved changes.1415## AI Credits16| Plan | Credits | Reset | Roughly |17|------|---------|-------|---------|18| Free | 500 | Daily | ~2 landing pages |19| Basic | 1,000 | Monthly | ~5 landing pages |20| Pro | 3,000 | Monthly | ~10 landing pages |2122Editor seats: $20/mo (halved from $40).2324## What Framer Agents Can Do25- Generate pages from scratch26- Generate designs from screenshots27- Handle responsive breakpoints28- Design within existing pages29- Create layouts and sections30- Organize color and text styles31- Add effects and interactions32- Write custom code components (React)33- Write and improve content34- Import and organize content35- Generate SEO metadata36- Manage CMS collections37- Create CMS detail pages38- Audit for broken links39- Audit accessibility issues40- Audit inconsistent styling4142## External Agents Setup43Connect Claude Code, Cursor, or Codex without separate MCP setup:441. Open Framer project → Settings → External Agents452. Copy the connection string463. Paste into your AI tool's configuration4748External agents get access to the same canvas, CMS, styles, and publishing workflow.4950## Open-Source MCP Server (alternative)51For custom setups, use the community MCP server:52```json53{54 "mcpServers": {55 "framer": {56 "command": "npx",57 "args": ["-y", "framer-mcp-server"],58 "env": {59 "FRAMER_PROJECT_URL": "https://framer.com/projects/YourProject--abc123",60 "FRAMER_API_KEY": "fr_your_api_key_here"61 }62 }63 }64}65```6667## MCP Tools (community server)68- **CMS:** list/get/add/remove collection items, get field schemas69- **Design:** read page structure, apply canvas changes via DSL70- **Code:** list/get/set code component files (React)71- **Preview:** generate local HTML preview, publish deployments72- **Undo:** all write operations snapshot previous state for rollback7374## When to Use75- Building marketing sites, landing pages, portfolios76- Teams that need visual design + AI assistance77- When you want AI to work inside a visual canvas (not just generate code)78- Rapid prototyping with design fidelity7980## Pitfalls81- Complex web apps with custom logic/deeply nested components may need manual intervention82- Agent occasionally produces templated layouts despite respecting style systems83- AI credits consumed per agent action — monitor usage on high-iteration tasks84- External Agents is Framer-native (not open MCP) — locked to Framer's connection method85- Community MCP server is third-party, not official Framer8687## Version88Framer 3.0, released June 16, 2026. All plans.