- Every tool takes
flow_site_id except list_flow_sites, create_flow_site and get_flow_webflow_rules. - Every update and delete takes the
updated_at revision of its target. A stale revision is refused. - Section writes are checked against the Webflow rulebook and rejected with
HTFLOW_WEBFLOW_RULES_VIOLATED if they fail.
| Tool | Title | What it does |
|---|
list_flow_sites | List Flow sites | List every Flow/Webflow site this user can access. |
create_flow_site | Create Flow site | Create a raw HTML/CSS/JS Flow site with a blank Home page. |
get_flow_site | Read Flow site | Read a Flow site's tokens, pages, ordered sections and revisions. |
delete_flow_site | Delete Flow site | Permanently delete a Flow site using its latest revision. Only its workspace owner/admin may do this. |
| Tool | Title | What it does |
|---|
get_flow_webflow_rules | Read Flow rulebook | Read the mandatory Webflow-compatible HTML/CSS/JavaScript authoring rules enforced by Flow writes. |
audit_flow_site | Audit Flow site | Audit every section against enforced Webflow rules and report token consistency signals. |
| Tool | Title | What it does |
|---|
list_flow_pages | List Flow pages | List ordered pages and revisions without section source. |
get_flow_page | Read Flow page | Read one page and its ordered sections, optionally including source. |
create_flow_page | Create Flow page | Create one page in a Flow site. |
update_flow_page | Update Flow page | Rename or re-slug a Flow page with optimistic concurrency. |
delete_flow_page | Delete Flow page | Delete a page and its sections. A Flow site must keep at least one page. |
| Tool | Title | What it does |
|---|
list_flow_sections | List Flow sections | List a page's ordered section summaries and revisions. |
get_flow_section | Read Flow section | Read exact HTML, CSS, JavaScript and revision. Always call before editing. |
inspect_flow_section | Inspect Flow elements | List stable selectors and element structure before element-level edits. |
create_flow_section | Create Flow section | Create one Webflow-compatible raw HTML/CSS/JS section. Non-compliant writes are rejected. |
update_flow_section | Update Flow section | Atomically update section source/title using its latest revision. |
delete_flow_section | Delete Flow section | Permanently delete one section using its latest revision. |
reorder_flow_section | Reorder Flow section | Move one section to a new zero-based position using its latest revision. |
| Tool | Title | What it does |
|---|
add_flow_element | Add Flow element | Insert an element relative to one selector and optionally replace complete section CSS/JS. |
update_flow_element | Update Flow element | Edit one exactly-matched element and optionally replace complete section CSS/JS. |
remove_flow_element | Remove Flow element | Remove one exactly-matched element and optionally replace obsolete CSS/JS. |
| Tool | Title | What it does |
|---|
get_flow_design_tokens | Read Flow design tokens | Read shared color, typography and spacing tokens plus the site revision. |
set_flow_design_tokens | Update Flow design tokens | Merge shared color, typography and spacing token changes using the latest site revision. |