Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Connects MCP clients to Framer projects for reading sites, editing CMS content, designing pages with a DSL, managing code components, and previewing changes locally.

README.md

Framer MCP Server

An MCP server that connects Claude Code, Cursor, or any MCP client to your Framer project. Read your site, edit CMS content, design pages with a canvas DSL, manage code components, and preview changes locally -- all from your editor.

Setup

1. Get your Framer API key

  1. Open your project in Framer
  2. Go to Site Settings > General
  3. Scroll to API and create a new key
  4. Copy the project URL from your browser (e.g. https://framer.com/projects/MyProject--abc123)

2. Configure MCP

Add to your .mcp.json (Claude Code) or MCP settings (Cursor):

{
  "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"
      }
    }
  }
}

Or install globally:

npm install -g framer-mcp-server

Tools

Project

| Tool | Description | |------|-------------| | framer_mcp_get_project_info | Returns project name, URLs, and connection status |

CMS

| Tool | Description | |------|-------------| | framer_mcp_list_collections | Lists all CMS collections with item/field counts | | framer_mcp_get_collection_fields | Returns field names, types, and IDs for a collection | | framer_mcp_get_collection_items | Lists items in a collection (title, slug, draft status) | | framer_mcp_get_collection_item | Returns full field data for a single item | | framer_mcp_add_collection_items | Adds or updates items (upsert). Returns previous state for undo | | framer_mcp_remove_collection_items | Deletes items by ID. Returns previous state for undo |

Design

| Tool | Description | |------|-------------| | framer_mcp_get_page_context | Returns DSL command docs + project fonts, components, tokens | | framer_mcp_read_page | Queries page structure (site-map, node-by-id, components) | | framer_mcp_apply_changes | Pushes visual changes to the Framer canvas via DSL commands | | framer_mcp_get_code_files | Lists code component files in the project | | framer_mcp_set_code_file | Creates or updates a code component file |

Preview & Publish

| Tool | Description | |------|-------------| | framer_mcp_preview | Generates a local HTML preview and opens it in the browser | | framer_mcp_publish | Creates a deployment and returns the preview URL |

Usage Examples

Browse your site

"What pages does my site have?"
→ Uses framer_mcp_read_page with site-map query

"Show me the homepage structure"
→ Uses framer_mcp_get_page_context + framer_mcp_read_page with node-by-id

Edit CMS content

"Update the title of my AI project to 'AI Sommelier v2'"
→ Uses framer_mcp_get_collection_items to find the item
→ Uses framer_mcp_add_collection_items to update it

Design changes

"Make the hero section full-screen with centered text"
→ Uses framer_mcp_get_page_context for DSL docs
→ Uses framer_mcp_read_page to get current hero node
→ Uses framer_mcp_apply_changes with DSL commands
→ Uses framer_mcp_preview to generate local preview

Preview before pushing

"Preview the homepage"
→ Uses framer_mcp_preview to generate HTML and open in browser

"Publish to staging"
→ Uses framer_mcp_publish to deploy and return the preview URL

How It Works

The server connects to your Framer project via the Framer Server API using a WebSocket connection. It translates MCP tool calls into Framer API operations:

  • CMS tools use collection/item CRUD methods
  • Design tools use the Framer agent DSL (applyAgentChanges, readProjectForAgent) for canvas manipulation
  • Preview reads the full page node tree and converts it to styled HTML
  • Code tools use createCodeFile / setFileContent for React components

All write operations (CMS add/remove, design changes) include undo support by snapshotting previous state.

Development

git clone https://github.com/ericpjtsai/framer-mcp-server.git
cd framer-mcp-server
npm install
cp .env.example .env  # Add your credentials
npm run dev

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.