High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.
MCP server for the Webflow Data API
Webflow's MCP server lets an AI agent call Webflow Data API tools through Model Context Protocol. You can connect it remotely with OAuth or run it locally with a Webflow API token. The server is built in TypeScript on top of the Webflow JavaScript SDK.
Builders who want their agent to manage Webflow content and site data from Cursor or any MCP client.
You can ask an agent to inspect and change Webflow sites without leaving your chat or redoing API setup by hand.
What it does
Remote MCP connection
Connects to `https://mcp.webflow.com/sse` and uses OAuth to authorize Webflow sites.
Local MCP server
Runs with `WEBFLOW_TOKEN` so your agent can talk to the Webflow Data API from your machine.
Webflow Designer bridge
Works with the published Webflow MCP Bridge App inside the Designer to connect the live canvas to your agent.
TypeScript tool server
Implements MCP server logic in `src/index.ts`, `src/mcp.ts`, and tool modules under `src/tools`.
Cursor and Claude Desktop setup
Shows the config needed for Cursor `.cursor/mcp.json` and Claude Desktop `claude_desktop_config.json`.
How to get it
- 1Open your site in the Webflow Designer, or ask your AI agent
Give me a link to open <MY_SITE_NAME> in the Webflow Designer
- 2Try these in your AI chat
Analyze my last 5 blog posts and suggest 3 new topic ideas with SEO keywords
- 3Run
Find older blog posts that mention similar topics and add internal links to my latest post
- 4Run
Create a hero section card on my home page with a CTA button and responsive design
- 5Open your site in the Webflow Designer, or ask your AI agent
Give me a link to open <MY_SITE_NAME> in the Webflow Designer
- 6Run
Analyze my last 5 blog posts and suggest 3 new topic ideas with SEO keywords
README
Webflow's MCP server
A Node.js server implementing Model Context Protocol (MCP) for Webflow using the Webflow JavaScript SDK. Enable AI agents to interact with Webflow APIs. Learn more about Webflow's Data API in the developer documentation.
Prerequisites
🚀 Remote installation
Get started by installing Webflow's remote MCP server. The remote server uses OAuth to authenticate with your Webflow sites, and a companion app that syncs your live canvas with your AI agent.
Requirements
- Node.js 22.3.0 or higher
Note: The MCP server currently supports Node.js 22.3.0 or higher. If you run into version issues, see the Node.js compatibility guidance.
Cursor
Add MCP server to Cursor
- Go to
Settings → Cursor Settings → MCP & Integrations. - Under MCP Tools, click
+ New MCP Server. - Paste the following configuration into
.cursor/mcp.json(or add thewebflowpart to your existing configuration):
{
"mcpServers": {
"webflow": {
"url": "https://mcp.webflow.com/sse"
}
}
}
Tip: You can create a project-level
mcp.jsonto avoid repeated auth prompts across multiple Cursor windows. See Cursor’s docs on configuration locations.
- Save and close the file. Cursor will automatically open an OAuth login page where you can authorize Webflow sites to use with the MCP server.
Open the Webflow Designer
- Open your site in the Webflow Designer, or ask your AI agent:
Give me a link to open <MY_SITE_NAME> in the Webflow Designer
Open the MCP Webflow App
- In the Designer, open the Apps panel (press
E). - Launch your published "Webflow MCP Bridge App".
- Wait for the app to connect to the MCP server.
Write your first prompt
Try these in your AI chat:
Analyze my last 5 blog posts and suggest 3 new topic ideas with SEO keywords
Find older blog posts that mention similar topics and add internal links to my latest post
Create a hero section card on my home page with a CTA button and responsive design
Claude desktop
Add MCP server to Claude desktop
- Enable developer mode:
Help → Troubleshooting → Enable Developer Mode. - Open developer settings:
File → Settings → Developer. - Click
Get Startedor edit the configuration to openclaude_desktop_config.jsonand add:
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}
- Save and restart Claude Desktop (
Cmd/Ctrl + R). An OAuth login page will open to authorize sites.
Open the Webflow Designer
- Open your site in the Webflow Designer, or ask your AI agent:
Give me a link to open <MY_SITE_NAME> in the Webflow Designer
Open the MCP Webflow App
- In the Designer, open the Apps panel (press
E). - Launch your published "Webflow MCP Bridge App".
- Wait for the app to connect to the MCP server.
Write your first prompt
Analyze my last 5 blog posts and suggest 3 new topic ideas with SEO keywords
Find older blog posts that mention similar topics and add internal links to my latest post
Create a hero section card on my home page with a CTA button and responsive design
Reset your OAuth token
To reset your OAuth token, run the following command in your terminal.
rm -rf ~/.mcp-auth
Node.js compatibility
Please see the Node.js compatibility guidance on Webflow's developer docs.
Local Installation
You can also configure the MCP server to run locally. This requires:
- Creating and registering your own MCP Bridge App in a Webflow workspace with Admin permissions
- Configuring your AI client to start the local MCP server with a Webflow API token
1. Create and publish the MCP bridge app
Before connecting the local MCP server to your AI client, you must create and publish the Webflow MCP Bridge App in your workspace.
Steps
-
Register a Webflow App
- Go to your Webflow Workspace and register a new app.
- Follow the official guide: Register an App.
-
Get the MCP Bridge App code
- Option A: Download the latest
bundle.zipfrom the releases page. - Option B: Clone the repository and build it:
git clone https://github.com/virat21/webflow-mcp-bridge-app cd webflow-mcp-bridge-app- Then build the project following the repository instructions.
- Option A: Download the latest
-
Publish the Designer Extension
- Go to Webflow Dashboard → Workspace settings → Apps & Integrations → Develop → Your App.
- Click “Publish Extension Version”.
- Upload your built
bundle.zipfile.
-
Open the App in Designer
- Once published, open the MCP Bridge App from the Designer → Apps panel in a site within your workspace.
2. Configure your AI client
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@latest"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}
Claude desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@latest"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}
3. Use the MCP server with the Webflow Designer
- Open your site in the Webflow Designer.
- Open the Apps panel (press
E) and launch your published “Webflow MCP Bridge App”. - Wait for the app to connect to the MCP server, then use tools from your AI client.
- If the Bridge App prompts for a local connection URL, call the
get_designer_app_connection_infotool from your AI client and paste the returnedhttp://localhost:<port>URL.
Optional: Run locally via shell
WEBFLOW_TOKEN="<YOUR_WEBFLOW_TOKEN>" npx -y webflow-mcp-server@latest
# PowerShell
$env:WEBFLOW_TOKEN="<YOUR_WEBFLOW_TOKEN>"
npx -y webflow-mcp-server@latest
Reset your OAuth Token
To reset your OAuth token, run the following command in your terminal.
rm -rf ~/.mcp-auth
Node.js compatibility
Please see the Node.js compatibility guidance on Webflow's developer docs.
❓ Troubleshooting
If you are having issues starting the server in your MCP client e.g. Cursor or Claude Desktop, please try the following.
Make sure you have a valid Webflow API token
- Go to Webflow's API Playground, log in and generate a token, then copy the token from the Request Generator
- Replace
YOUR_WEBFLOW_TOKENin your MCP client configuration with the token you copied - Save and restart your MCP client
Make sure you have the Node and NPM installed
Run the following commands to confirm you have Node and NPM installed:
node -v
npm -v
Clear your NPM cache
Sometimes clearing your NPM cache can resolve issues with npx.
npm cache clean --force
Fix NPM global package permissions
If npm -v doesn't work for you but sudo npm -v does, you may need to fix NPM global package permissions. See the official NPM docs for more information.
Note: if you are making changes to your shell configuration, you may need to restart your shell for changes to take effect.
🛠️ Available tools
See the ./tools directory for a list of available tools
🗣️ Prompts & resources
This implementation doesn't include prompts or resources from the MCP specification. However, this may change in the future when there is broader support across popular MCP clients.
📄 Webflow developer resources
⚠️ Known limitations
Static page content updates
The pages_update_static_content endpoint currently only supports updates to localized static pages in secondary locales. Updates to static content in the default locale aren't supported and will result in errors.
Files in the repo
- .github
- src
- .gitignore
- LICENCE
- package-lock.json
- package.json
- README.md
- server.json
- tsconfig.json
- webflow_logo.png
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More connectors

Universal provider proxy for OpenAI Codex & Claude Code — use any LLM (Claude, Gemini, Grok, DeepSeek, Ollama…) with Codex CLI, App, SDK, and Claude Code
Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300µs in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.
Local-first code intelligence graph for MCP and CLI. Builds a persistent map of your codebase so AI coding tools read only what matters, with benchmarked context reductions on reviews and large-repo workflows.
Stop your AI from making things up — it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.
20 MB lightweight cross-platform database client for 90+ databases, including MySQL, PostgreSQL, SQLite, Redis, MongoDB, DuckDB, SQL Server, and Dameng. Built-in AI, MCP Server, CLI, desktop and Docker. | 轻量级跨平台数据库管理工具,支持 MySQL、PostgreSQL、SQLite、Redis、MongoDB、达梦等 90+ 数据库,提供桌面端、Docker、CLI、内置 AI 助手和 MCP Server。