> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mentionpath.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Webflow

> Connect Webflow CMS to Mentionpath for content sync and draft publishing via the app, API, and MCP.

Connect Webflow to pull CMS content into Mentionpath and create or update **draft** items from Articles or programmatic clients. Publishing to live Webflow still happens in Webflow or through your normal publish workflow.

## Connect Webflow

1. Open **Account → Integrations** for the domain you want to connect.
2. Select **Webflow** and authenticate with your Webflow account.
3. Choose the site and enable the CMS collections you want to sync.

Once connected, Mentionpath syncs normalized CMS documents for use in Articles and the knowledge base.

## What you can do

| Surface      | Capability                                                                                       |
| ------------ | ------------------------------------------------------------------------------------------------ |
| **App**      | Import Webflow content, export articles as CMS drafts                                            |
| **REST API** | List collections and items; create or update drafts (`integrations:read` / `integrations:write`) |
| **MCP**      | Same as REST via `webflow_*` tools                                                               |

Draft writes require `integrations:write` and are [approval-gated](/mcp/scopes-and-approvals) by default when called programmatically.

## API and MCP endpoints

REST paths (all under `/api/v1/domains/{domainId}/webflow/…`):

* `GET …/auth-status` — connection health
* `GET …/collections` — enabled collections
* `GET …/collections/{collectionId}/items` — paginated CMS items
* `GET …/items/{documentId}` — single item
* `POST …/drafts` — create draft
* `PATCH …/drafts/{itemId}` — update draft

See the [API Reference](/api-reference/webflow-auth-status) tab for generated request and response schemas.

<Warning>
  MCP and API integrations create and update **drafts only**. They do not publish items to your live Webflow site.
</Warning>
