MCP Catalogs
Home

mcp-server

by webflow·131·Score 48

Webflow MCP server enables AI agents to interact with Webflow APIs through Model Context Protocol.

ecommercedeveloper-toolsai-llm
33
Forks
19
Open issues
1 mo ago
Last commit
2d ago
Indexed

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:

you:Analyze blog posts and suggest SEO-optimized content topics
you:Automatically add internal links between related content
you:Create responsive design elements like hero sections with CTAs
you:How do I reset my OAuth token?
you:What are the known limitations?

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_content

    Updates 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

wordpress-mcpshopify-mcpcontentful-mcpwix-mcpwebflow-api

Installation

Remote Installation (Recommended)

  1. Add to Claude Desktop config (claude_desktop_config.json):
{
  "mcpServers": {
    "webflow": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.webflow.com/sse"]
    }
  }
}
  1. Or add to Cursor config (.cursor/mcp.json):
{
  "mcpServers": {
    "webflow": {
      "url": "https://mcp.webflow.com/sse"
    }
  }
}
  1. Open your site in Webflow Designer and launch the MCP Bridge App from the Apps panel

Local Installation

  1. Create and publish a Webflow MCP Bridge App in your workspace
  2. Get your Webflow API token
  3. 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.