mcp-server
by webflow·★ 131·Score 48
Webflow MCP server enables AI agents to interact with Webflow APIs through Model Context Protocol.
Overview
This is a TypeScript-based MCP server that provides access to Webflow's Data API, allowing AI agents to manage websites, content, and design elements within the Webflow platform. It supports both remote OAuth authentication and local API token authentication, with specific configurations for popular AI clients like Claude Desktop and Cursor. The server offers a range of tools for website management, content creation, and design modifications, though it currently focuses primarily on tools and doesn't include prompts or resources from the MCP specification.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server if you're already using Webflow for website development and want AI assistance directly integrated into your workflow for content creation and site management.
When NOT to choose this
Avoid if you need write access to static content in the default locale or prefer a non-vendor-specific solution that doesn't lock you into Webflow's ecosystem.
Tools this server exposes
1 tool extracted from the README (low confidence)pages_update_static_contentUpdates localized static page content in secondary locales
Note: The README mentions there are tools in the './tools' directory but doesn't list them explicitly. Only one tool name is found in the text under 'Known limitations'.
Comparable tools
Installation
Remote Installation (Recommended)
- Add to Claude Desktop config (
claude_desktop_config.json):
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}- Or add to Cursor config (
.cursor/mcp.json):
{
"mcpServers": {
"webflow": {
"url": "https://mcp.webflow.com/sse"
}
}
}- Open your site in Webflow Designer and launch the MCP Bridge App from the Apps panel
Local Installation
- Create and publish a Webflow MCP Bridge App in your workspace
- Get your Webflow API token
- Add to client config with environment variable:
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@latest"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}FAQ
- How do I reset my OAuth token?
- Run `rm -rf ~/.mcp-auth` in your terminal to reset your OAuth token.
- What are the known limitations?
- 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.
Compare mcp-server with
Last updated · Auto-generated from public README + GitHub signals.