Webflow MCP Server
Provides tools for managing Webflow sites, pages, components, CMS collections and items, custom code, and AI-powered search through Webflow's API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Webflow MCP Servershow me all my Webflow sites"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Webflow's Official 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
Related MCP server: Webflow MCP Server
▶️ Quick start (hosted on Cloudflare workers)
For Cursor:
Go to
Settings→Cursor Settings→MCPClick
+ Add New Global MCP ServerPaste the following configuration (or add the
webflowpart to your existing configuration)
{
"mcpServers": {
"webflow": {
"command": "npx mcp-remote https://mcp.webflow.com/sse"
}
}
}Save, Cursor 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 Claude Desktop:
Open
Settings→DeveloperClick
Edit ConfigOpen
claude_desktop_config.jsonin a code editor and paste the following configuration (or add thewebflowpart to your existing configuration)
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}Save the file and restart Claude Desktop (command/ctrl + R). When Claude restarts, it 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 Windsurf:
Navigate to
Windsurf - Settings→Advanced SettingsScroll down to the
Cascadesection →Add Server→Add custom server +Paste the following configuration (or add the
webflowpart to your existing configuration)
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}Click
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:
Open
settings.jsonPaste the following configuration (or add the
webflowpart to your existing configuration)
{
"mcp": {
"servers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}
}Savethe file. You should see astartbutton 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▶️ Quick start (local installation)
Get your Webflow API token
Go to Webflow's API Playground
Log in and generate a token
Copy the token from the Request Generator

Add to your AI editor
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@0.6.0"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}For Cursor:
Go to Settings → Cursor Settings → MCP
Click
+ Add New Global MCP ServerPaste configuration
Replace
YOUR_WEBFLOW_TOKENwith the token you copied earlierSave and restart Cursor
For Claude Desktop:
Open Settings → Developer
Click
Edit ConfigOpen
claude_desktop_config.jsonin a code editor and paste configurationReplace
YOUR_WEBFLOW_TOKENwith the token you copied earlier 5. Save and restart Claude
❓ Troubleshooting
If you are having issues starting the server in your MCP client e.g. Cursor or Claude Desktop, please try the following.
Ensure 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 copiedSave and restart your MCP client
Ensure you have the Node and NPM installed
Run the following commands to confirm you have Node and NPM installed:
node -v
npm -vClear your NPM cache
Sometimes clearing your NPM cache can resolve issues with npx.
npm cache clean --forceFix 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
Sites
sites - list; // List all sites
sites - get; // Get site details
sites - publish; // Publish site changesPages
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 contentComponents
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 localizationCMS
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 itemsCustom Code
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 siteComponents
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 localesAsk Webflow AI
ask - webflow - ai; // Search Webflow Docs using AI search🗣️ Prompts & Resources
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.
🚧 Development mode
If you want to run the server in development mode, you can install dependencies and run the server using the following command:
Clone and install:
git clone git@github.com:webflow/mcp-server.git
cd mcp-server
npm installAdd your token to a
.envfile at the root of the project:
# .env
WEBFLOW_TOKEN=<YOUR_WEBFLOW_TOKEN>Start development server:
npm start📄 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 are not supported and will result in errors.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ampcome-mcps/webflow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server