Build and manage pages, elements, components, and styles in Webflow Designer. Use when adding sections, creating layouts, building elements, inspecting or updating components, viewing what's inside a component, restructuring pages, creating new pages, previewing page structure, styling elements, or managing component properties. Building, styling, and inspecting run headlessly against an explicit page ID — no Designer connection needed. Designer is required for `designer_tool` actions (reading/switching the page open on canvas, interactively selecting an element, creating page folders, opening a component's canvas view) and for `element_snapshot_tool` visual previews.
npx skills add https://github.com/webflow/webflow-skills --skill webflow-mcp:designer-tools
Build, inspect, and manage page elements and components in the Webflow Designer.
ALWAYS use Webflow MCP tools for all operations:
webflow_guide_tool to get best practices before any other tool calldata_sites_tool with action list_sites to identify the target sitedata_pages_tool with action list_pages to find the target page by name or slug — headless, works against any pagedata_pages_tool with action create_page to create new pages — headlessdata_element_tool with action get_all_elements or query_elements to retrieve or filter page elements — headless, pass the page's ID directlydata_element_builder to create new elements — headless, pass the page's ID and a parent element IDdata_element_tool with action set_attributes, set_text, set_style, or set_link to modify elements — headlesselement_snapshot_tool to get visual previews of elements before and after changes — this is a Designer tool and requires a Designer connectiondata_style_tool to create and update styles on elements — headlesswebflow_guide_tool to check supported style propertiesdata_component_tool with action get_all_components or query_components to list site components — headlessdata_component_tool with action get_component to inspect a component's metadata — headlessdata_element_tool scoped with scope_component_id to inspect or edit a component's internal elements (its "content") — headlessdata_component_props_tool to manage prop definitions and set prop values on component instances — headlessdata_component_variants_tool to manage variants and per-variant style overrides — headlessdata_component_tool with action insert_component_instance or unlink_component_instance to manage component instances on a page — headless, not Designer-gateddesigner_tool only for actions that need a live canvas: get_current_page/switch_page (what's open in Designer right now), select_element/get_selected_element (interactive canvas selection), create_page_folder (page folders are Designer-only, unlike page creation itself), and open_component_view (viewing a component's canvas)context parameter (15-25 words, third-person perspective)designer_tool actions and for element_snapshot_tool. Building, styling, inspecting, and updating elements, components, props, and variants (the data_ tools) runs headlessly against an explicit page ID from data_pages_tool's list_pages — but the before/after visual snapshots this skill relies on for safe mutation need Designer open and connected. If Designer isn't available, skip the snapshot steps and rely on query_elements output to describe changes instead.webflow_guide_tool first — always the first MCP tool call in any workflowdata_sites_tool with action list_sites to identify the target site. If only one site exists, use it automatically.data_pages_tool with action list_pages to find the page by name or slug — no Designer connection needed. If the user is actively working in an open Designer session and wants "the page I have open," use designer_tool with action get_current_page instead.designer_tool with action switch_page if the user wants the Designer canvas itself to navigate there.data_element_tool with get_all_elements (or query_elements to filter by type/text/attribute) to retrieve page structure, passing the page ID from Phase 1. Present a summary of sections, elements, and nesting.element_snapshot_tool to get visual previews of specific sections — requires Designerdata_component_tool with action get_all_components or query_components to list all site componentsdata_component_tool with action get_component for metadata (props, variants), or data_element_tool with scope_component_id set to the component's ID to inspect its internal elementsBefore creating, updating, or deleting anything:
10. Snapshot current state: Use element_snapshot_tool to capture the area being changed — requires Designer; if unavailable, describe the current state from query_elements output instead
11. Present the plan: Describe exactly what will be created, modified, or deleted
12. Request explicit confirmation: Ask the user before proceeding:
13. For destructive operations (delete, restructure): Require "confirm" or "delete", warn about child elements that will also be affected
14. Build elements: Use data_element_builder to create new elements (max 3 levels deep), passing the page ID and the parent element ID. For deeper structures, build in multiple passes.
15. Style elements: Use data_style_tool to apply or update styles on created or existing elements
16. Modify elements: Use data_element_tool with set_attributes, set_text, set_style, or set_link to update attributes, text, or links
17. Update components: Use data_element_tool (scoped with scope_component_id) to edit a component's internal elements; data_component_props_tool to change prop definitions or instance prop values; data_component_variants_tool to manage variants; data_component_tool with insert_component_instance/unlink_component_instance to add or unlink instances on a page
18. Create pages: Use data_pages_tool with action create_page. To create a page folder, use designer_tool with action create_page_folder — this specific action requires a Designer connection
19. Snapshot the result: Use element_snapshot_tool to capture the new state — requires Designer; if unavailable, summarize the change from the tool response instead
20. Report what changed: Summarize the changes made
User: "Show me all elements on the homepage"
webflow_guide_tool for best practicesdata_sites_tool with list_sites to identify the sitedata_pages_tool with list_pages to find the homepage's page IDdata_element_tool with get_all_elements (using that page ID) to retrieve page structureUser: "Add a hero section with a heading and CTA button"
webflow_guide_tool for best practicesdata_sites_tool with list_sites to identify the sitedata_pages_tool with list_pages to find the target page's IDelement_snapshot_tool to capture current statedata_element_builder with nested structuredata_style_tool to apply styles (padding, background, typography)element_snapshot_tool to show the resultUser: "Update the footer copyright text to 2026"
webflow_guide_tool for best practicesdata_sites_tool with list_sites to identify the sitedata_component_tool with query_components to find the footer componentdata_element_tool (scoped with scope_component_id) to inspect its internal elements and find the copyright text elementdata_element_tool with set_text (scoped with scope_component_id)User: "Restructure the hero section layout"
webflow_guide_tool for best practicesdata_sites_tool with list_sites to identify the sitedata_pages_tool with list_pages to find the target page's IDelement_snapshot_tool to capture current hero sectiondata_element_tool with query_elements to inspect current structuredata_element_tool (move_element, set_style, etc.) and/or data_element_builderelement_snapshot_tool to show the resultUser: "Create a two-column layout with text on left and image on right"
webflow_guide_tool for best practicesdata_sites_tool with list_sites to identify the sitedata_pages_tool with list_pages to find the target page's IDelement_snapshot_tool to capture current statedata_element_builder with grid structuredata_style_tool to set grid layout propertieselement_snapshot_tool to show the resultwebflow_guide_tool always first — before any other MCP tool in every workflowelement_snapshot_tool before mutations and after to show resultsdata_pages_tool's list_pages, then pass it directly to data_element_tool, data_element_builder, and data_style_tool. Reach for designer_tool only when the task specifically needs the live canvas (current-page detection, interactive selection, page folders, component canvas view).element_snapshot_tool is a Designer tool; if Designer isn't connected, fall back to describing changes from query_elements/tool response data instead of skipping the before/after check entirely.data_element_tool scoped to the component (changes propagate to all instances)insert_component_instance, unlink_component_instance) is headless via data_component_tool — not Designer-gateddata_element_builder supports max 3 levels per call — build deeper structures in stageswebflow_guide_tool for supported style properties when unsureToolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling
Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.
Take webflow/webflow-mcp:designer-tools from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.