drio
Open app

Webflow MCP Server

Source

Webflow MCP server

Catalog onlyCatalog onlySTDIO

Overview

Webflow MCP Server is a middleware server that enables Claude to interact with Webflow's APIs, facilitating seamless integration and automation of tasks related to Webflow sites.

To use the Webflow MCP Server, you need to set up your environment by creating a Webflow API token, installing dependencies, and configuring the server with your API token and Claude Desktop.

  • Retrieves a list of all Webflow sites accessible to the authenticated user. - Provides detailed information about specific Webflow sites. - Handles various error scenarios and provides troubleshooting guidance.
  1. Automating the retrieval of site data from Webflow.
  2. Integrating Webflow site management with other applications.
  3. Streamlining workflows for developers working with Webflow.

Add to your AI client

Use these steps to connect Webflow MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "webflow-mcp-server-kapilduraphe": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-webflow-mcp-server-kapilduraphe"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "webflow-mcp-server-kapilduraphe": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-webflow-mcp-server-kapilduraphe"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "webflow-mcp-server-kapilduraphe": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-webflow-mcp-server-kapilduraphe"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "webflow-mcp-server-kapilduraphe": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-webflow-mcp-server-kapilduraphe"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "webflow-mcp-server-kapilduraphe": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-webflow-mcp-server-kapilduraphe"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "webflow-mcp-server-kapilduraphe": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-webflow-mcp-server-kapilduraphe"
      ]
    }
  }
}

FAQ

What are the prerequisites for using Webflow MCP Server?

You need Node.js (v16 or higher), Claude Desktop App, a Webflow account, and a Webflow API token.

How do I troubleshoot common issues?

Check Claude Desktop logs, verify your API token, and ensure the path to index.js is correct.

Is my API token secure?

Yes, but you should keep it secure, avoid committing it to version control, and regularly rotate it.