com.webflow/mcp
平台与服务by webflow
面向 Webflow Sites 的 AI 驱动设计与管理 MCP server,支持站点创建、编辑与运维。
让Webflow站点从创建、编辑到运维都接入AI工作流,优势是通过MCP统一管站,明显减少重复操作和切换成本。
什么是 com.webflow/mcp?
面向 Webflow Sites 的 AI 驱动设计与管理 MCP server,支持站点创建、编辑与运维。
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:
bash
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.
常见问题
com.webflow/mcp 是什么?
面向 Webflow Sites 的 AI 驱动设计与管理 MCP server,支持站点创建、编辑与运维。
相关 Skills
Slack动图
by anthropics
面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。
✎ 帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。
MCP构建
by anthropics
聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。
✎ 想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。
接口测试套件
by alirezarezvani
扫描 Next.js、Express、FastAPI、Django REST 的 API 路由,自动生成覆盖鉴权、参数校验、错误码、分页、上传与限流场景的 Vitest 或 Pytest 测试套件。
✎ 帮你把API与集成测试自动化跑顺,减少回归漏测;能力全面,尤其适合复杂接口场景的QA团队。
相关 MCP Server
Slack 消息
编辑精选by Anthropic
Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。
✎ 这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。
by netdata
io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。
✎ 这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。
by d4vinci
Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。
✎ 这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。