mcp-server
Verified Safeby webflow
Overview
A Node.js server implementing Model Context Protocol (MCP) for Webflow, enabling AI agents to interact with Webflow Data and Designer APIs for AI-powered design and content management.
Installation
WEBFLOW_TOKEN="<YOUR_WEBFLOW_TOKEN>" npx -y webflow-mcp-server@latestEnvironment Variables
- WEBFLOW_TOKEN
Security Notes
The server uses Zod for input validation for its registered tools, which is a strong security practice. It requires the WEBFLOW_TOKEN to be provided via environment variable, preventing hardcoded secrets. The `designerAppBridge`'s Socket.IO server has CORS configured for `*` (any origin) for local development/bridge purposes, which is acceptable for this specific local-only context but would be a vulnerability if the server were publicly exposed. RPC calls to the Webflow Designer App pass arguments based on validated Zod schemas on the server side, shifting the direct execution risk to the client-side app, which should have its own robust validation. No direct `eval` or obfuscation was found in the provided source code.
Similar Servers
f2c-mcp
A Model Context Protocol server for Figma Design to Code, enabling AI tools to convert Figma designs into production-ready frontend code.
tmcp
Build Model Context Protocol (MCP) servers for AI agents, providing schema-agnostic tools, resources, and prompts, with optional OAuth 2.1 authentication and distributed session management.
claude-prompts-mcp
Manages hot-reloadable prompt templates, structured reasoning, and multi-step chain workflows to enhance AI assistant interactions through a Model Context Protocol (MCP) compatible server.
typingmind-mcp
A server for managing and integrating Model Context Protocol (MCP) servers with TypingMind, enabling custom AI model connections.