by webflow
Provides a Model Context Protocol (MCP) server that lets AI agents call Webflow's Data API for site, page, component, CMS, and custom‑code operations.
Enables AI‑driven workflows to read and modify Webflow sites, pages, components, collections, and custom code directly via the Webflow Data API.
Hosted (Cloudflare Workers) – Remote configuration Add the following to the MCP client configuration (Cursor, Claude Desktop, Windsurf, VS Code, etc.):
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}
The client will launch an OAuth flow to grant access to your Webflow sites.
Local installation
<YOUR_WEBFLOW_TOKEN>
with the token):{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@0.6.0"],
"env": { "WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>" }
}
}
}
Development mode
git clone git@github.com:webflow/mcp-server.git
cd mcp-server
npm install
# create .env with WEBFLOW_TOKEN=<YOUR_WEBFLOW_TOKEN>
npm start
mcp-remote
package for remote hosting.ask-webflow-ai
to let agents retrieve up‑to‑date documentation answers while performing tasks.Q: What if the server fails to start?
A: Verify you have a valid Webflow API token, Node.js and npm installed (node -v
/ npm -v
). Clear the npm cache (npm cache clean --force
) and ensure global package permissions are correct.
Q: How do I reset OAuth tokens?
A: Run rm -rf ~/.mcp-auth
before restarting your MCP client.
Q: Can I update static page content in the default locale? A: Currently unsupported; attempts will return an error.
Q: Which command should I use for the server?
A: Prefer npx
as shown in the configurations above; it avoids global installs and works in most environments.
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.
For Cursor:
Settings
→ Cursor Settings
→ MCP
+ Add New Global MCP Server
webflow
part to your existing configuration){
"mcpServers": {
"webflow": {
"command": "npx mcp-remote https://mcp.webflow.com/sse"
}
}
}
For Claude Desktop:
Settings
→ Developer
Edit Config
claude_desktop_config.json
in a code editor and paste the following configuration (or add the webflow
part to your existing configuration){
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}
For Windsurf:
Windsurf - Settings
→ Advanced Settings
Cascade
section → Add Server
→ Add custom server +
webflow
part to your existing configuration){
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}
Save
, Windsurf will automatically open a new browser window showing an OAuth login page to authorize the Webflow sites you want the MCP server to have access to.For VS Code:
settings.json
webflow
part to your existing configuration){
"mcp": {
"servers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}
}
Save
the file. You should see a start
button appear over the "webflow" key which you can click to open and run the auth flow. Alternatively, restart VS Code and the auth flow should start automatically.Important note
All these methods rely on the mcp-remote
npm package which is still considered experimental as of 04/30/2025.
If at any point you have issues, and want to reset your OAuth tokens, you can run the following command before restarting your MCP client:
rm -rf ~/.mcp-auth
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@0.6.0"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}
For Cursor:
+ Add New Global MCP Server
YOUR_WEBFLOW_TOKEN
with the token you copied earlierFor Claude Desktop:
Edit Config
claude_desktop_config.json
in a code editor and paste configurationYOUR_WEBFLOW_TOKEN
with the token you copied earlier 5. Save and restart ClaudeIf you are having issues starting the server in your MCP client e.g. Cursor or Claude Desktop, please try the following.
YOUR_WEBFLOW_TOKEN
in your MCP client configuration with the token you copiedRun the following commands to confirm you have Node and NPM installed:
node -v
npm -v
Sometimes clearing your NPM cache can resolve issues with npx
.
npm cache clean --force
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.
sites - list; // List all sites
sites - get; // Get site details
sites - publish; // Publish site changes
pages - list; // List all pages
pages - get - metadata; // Get page metadata
pages - update - page - settings; // Update page settings
pages - get - content; // Get page content
pages - update - static - content; // Update page content
components - list // List all components in a site
components - get - content // Get component content (text, images, nested components)
components - update - content // Update component content for localization
components - get - properties // Get component properties (default values)
components - update - properties // Update component properties for localization
collections - list; // List collections
collections - get; // Get collection details
collections - create; // Create a collection
collection - fields - create - static; // Create a static field
collection - fields - create - option; // Create an option field
collection - fields - create - reference; // Create a reference field
collection - fields - update; // Update a custom field
collections - items - create - item - live; // Create items
collections - items - update - items - live; // Update items
collections - items - list - items; // List collection items
collections - items - create - item; // Create collection items (staged)
collections - items - update - items; // Update collection items (staged)
collections - items - publish - items; // Publish collection items
custom code - add - inline - site - script // Register an inline script for a site
custom code - get - registered - site - script - list // List all scripts registered to a site
custom code - get - applied - site - script - list //Get all scripts applied to a site
custom code - delete site custom code // Remove scripts from a site
components - list; // List all components for a site
components - content - get; // Get static content from a component definition
components - content - update; // Update content within a component definition for secondary locales
components - properties - get; // Get the default property values of a component definition
components - properties - update; // Update the default property values of a component definition for secondary locales
ask - webflow - ai; // Search Webflow Docs using AI search
This implementation does not include prompts
or resources
from the MCP specification. However, this may change in the future when there is broader support across popular MCP clients.
If you want to run the server in development mode, you can install dependencies and run the server using the following command:
git clone git@github.com:webflow/mcp-server.git
cd mcp-server
npm install
.env
file at the root of the project:# .env
WEBFLOW_TOKEN=<YOUR_WEBFLOW_TOKEN>
npm start
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 are not supported and will result in errors.
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "webflow": { "command": "npx", "args": [ "-y", "webflow-mcp-server@0.6.0" ], "env": { "WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.