smithery/sickn33

webflow-automation

Automate Webflow CMS collections, site publishing, page management, asset uploads, and ecommerce orders via Rube MCP (Composio). Always search tools first for current schemas.

Installation

$ npx skills add smithery/sickn33 --skill webflow-automation

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/sickn33 · top by installs.

npx skills add smithery/sickn33

Browse all from smithery/sickn33

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 11,794 B
  • docs SUMMARY.md 201 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Webflow Automation via Rube MCP

Automate Webflow operations including CMS collection management, site publishing, page inspection, asset uploads, and ecommerce order retrieval through Composio's Webflow toolkit.

Prerequisites

  • Rube MCP must be connected (RUBESEARCHTOOLS available)
  • Active Webflow connection via RUBEMANAGECONNECTIONS with toolkit webflow
  • Always call RUBESEARCHTOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds
  2. Call RUBEMANAGECONNECTIONS with toolkit webflow
  3. If connection is not ACTIVE, follow the returned auth link to complete Webflow OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Manage CMS Collection Items

When to use: User wants to create, update, list, or delete items in Webflow CMS collections (blog posts, products, team members, etc.)

Tool sequence:

  1. WEBFLOWLISTWEBFLOWSITES - List sites to find the target siteid [Prerequisite]
  2. WEBFLOWLISTCOLLECTIONS - List all collections for the site [Prerequisite]
  3. WEBFLOWGETCOLLECTION - Get collection schema to find valid field slugs [Prerequisite for create/update]
  4. WEBFLOWLISTCOLLECTION_ITEMS - List existing items with filtering and pagination [Optional]
  5. WEBFLOWGETCOLLECTION_ITEM - Get a specific item's full details [Optional]
  6. WEBFLOWCREATECOLLECTION_ITEM - Create a new item with field data [Required for creation]
  7. WEBFLOWUPDATECOLLECTION_ITEM - Update an existing item's fields [Required for updates]
  8. WEBFLOWDELETECOLLECTION_ITEM - Permanently remove an item [Optional]
  9. WEBFLOWPUBLISHSITE - Publish changes to make them live [Optional]

Key parameters for CREATECOLLECTIONITEM:

  • collectionid: 24-character hex string from LISTCOLLECTIONS
  • field_data: Object with field slug keys (NOT display names); must include name and slug
  • field_data.name: Display name for the item
  • field_data.slug: URL-friendly identifier (lowercase, hyphens, no spaces)
  • is_draft: Boolean to create as draft (default false)

Key parameters for UPDATECOLLECTIONITEM:

  • collection_id: Collection identifier
  • item_id: 24-character hex MongoDB ObjectId of the existing item
  • fields: Object with field slug keys and new values
  • live: Boolean to publish changes immediately (default false)

Field value types:

  • Text/Email/Link/Date: string
  • Number: integer or float
  • Boolean: true/false
  • Image: {"url": "...", "alt": "...", "fileId": "..."}
  • Multi-reference: array of reference ID strings
  • Multi-image: array of image objects
  • Option: option ID string

Pitfalls:

  • Field keys must use the exact field slug from the collection schema, NOT display names
  • Always call GET_COLLECTION first to retrieve the schema and identify correct field slugs
  • CREATECOLLECTIONITEM requires name and slug in field_data
  • UPDATECOLLECTIONITEM cannot create new items; it requires a valid existing item_id
  • item_id must be a 24-character hexadecimal MongoDB ObjectId
  • Slug must be lowercase alphanumeric with hyphens: ^[a-z0-9]+(?:-[a-z0-9]+)*$
  • CMS items are staged; use PUBLISH_SITE or set live: true to push to production

2. Manage Sites and Publishing

When to use: User wants to list sites, inspect site configuration, or publish staged changes

Tool sequence:

  1. WEBFLOWLISTWEBFLOW_SITES - List all accessible sites [Required]
  2. WEBFLOWGETSITE_INFO - Get detailed site metadata including domains and settings [Optional]
  3. WEBFLOWPUBLISHSITE - Deploy all staged changes to live site [Required for publishing]

Key parameters for PUBLISH_SITE:

  • siteid: Site identifier from LISTWEBFLOW_SITES
  • customdomains: Array of custom domain ID strings (from GETSITE_INFO)
  • publishtowebflow_subdomain: Boolean to publish to {shortName}.webflow.io
  • At least one of customdomains or publishtowebflowsubdomain must be specified

Pitfalls:

  • PUBLISH_SITE republishes ALL staged changes for selected domains -- verify no unintended drafts are pending
  • Rate limit: 1 successful publish per minute
  • For sites without custom domains, must set publishtowebflow_subdomain: true
  • custom_domains expects domain IDs (hex strings), not domain names
  • Publishing is a production action -- always confirm with the user first

3. Manage Pages

When to use: User wants to list pages, inspect page metadata, or examine page DOM structure

Tool sequence:

  1. WEBFLOWLISTWEBFLOWSITES - Find the target siteid [Prerequisite]
  2. WEBFLOWLISTPAGES - List all pages for a site with pagination [Required]
  3. WEBFLOWGETPAGE - Get detailed metadata for a specific page [Optional]
  4. WEBFLOWGETPAGE_DOM - Get the DOM/content node structure of a static page [Optional]

Key parameters:

  • site_id: Site identifier (required for list pages)
  • page_id: 24-character hex page identifier
  • locale_id: Optional locale filter for multi-language sites
  • limit: Max results per page (max 100)
  • offset: Pagination offset

Pitfalls:

  • LIST_PAGES paginates via offset/limit; iterate when sites have many pages
  • Page IDs are 24-character hex strings matching pattern ^[0-9a-fA-F]{24}$
  • GETPAGEDOM returns the node structure, not rendered HTML
  • Pages include both static and CMS-driven pages

4. Upload Assets

When to use: User wants to upload images, files, or other assets to a Webflow site

Tool sequence:

  1. WEBFLOWLISTWEBFLOWSITES - Find the target siteid [Prerequisite]
  2. WEBFLOWUPLOADASSET - Upload a file with base64-encoded content [Required]

Key parameters:

  • site_id: Site identifier
  • file_name: Name of the file (e.g., "logo.png")
  • file_content: Base64-encoded binary content of the file (NOT a placeholder or URL)
  • content_type: MIME type (e.g., "image/png", "image/jpeg", "application/pdf")
  • md5: MD5 hash of the raw file bytes (32-character hex string)
  • assetfolderid: Optional folder placement

Pitfalls:

  • file_content must be actual base64-encoded data, NOT a variable reference or placeholder
  • md5 must be computed from the raw bytes, not from the base64 string
  • This is a two-step process internally: generates an S3 pre-signed URL, then uploads
  • Large files may encounter timeouts; keep uploads reasonable in size

5. Manage Ecommerce Orders

When to use: User wants to view ecommerce orders from a Webflow site

Tool sequence:

  1. WEBFLOWLISTWEBFLOW_SITES - Find the site with ecommerce enabled [Prerequisite]
  2. WEBFLOWLISTORDERS - List all orders with optional status filtering [Required]
  3. WEBFLOWGETORDER - Get detailed information for a specific order [Optional]

Key parameters:

  • site_id: Site identifier (must have ecommerce enabled)
  • order_id: Specific order identifier for detailed retrieval
  • status: Filter orders by status

Pitfalls:

  • Ecommerce must be enabled on the Webflow site for order endpoints to work
  • Order endpoints are read-only; no create/update/delete for orders through these tools

Common Patterns

ID Resolution

Webflow uses 24-character hexadecimal IDs throughout:

  • Site ID: WEBFLOWLISTWEBFLOW_SITES -- find by name, capture id
  • Collection ID: WEBFLOWLISTCOLLECTIONS with site_id
  • Item ID: WEBFLOWLISTCOLLECTIONITEMS with collectionid
  • Page ID: WEBFLOWLISTPAGES with site_id
  • Domain IDs: WEBFLOWGETSITE_INFO -- found in customDomains array
  • Field slugs: WEBFLOWGETCOLLECTION -- found in collection fields array

Pagination

Webflow uses offset-based pagination:

  • offset: Starting index (0-based)
  • limit: Items per page (max 100)
  • Increment offset by limit until fewer results than limit are returned
  • Available on: LISTCOLLECTIONITEMS, LIST_PAGES

CMS Workflow

Typical CMS content creation flow:

  1. Get siteid from LISTWEBFLOW_SITES
  2. Get collectionid from LISTCOLLECTIONS
  3. Get field schema from GET_COLLECTION (to learn field slugs)
  4. Create/update items using correct field slugs
  5. Publish site to make changes live

Known Pitfalls

ID Formats

  • All Webflow IDs are 24-character hexadecimal strings (MongoDB ObjectIds)
  • Example: 580e63fc8c9a982ac9b8b745
  • Pattern: ^[0-9a-fA-F]{24}$
  • Invalid IDs return 404 errors

Field Slugs vs Display Names

  • CMS operations require field slug values, NOT display names
  • A field with displayName "Author Name" might have slug author-name
  • Always call GET_COLLECTION to discover correct field slugs
  • Using wrong field names silently ignores the data or causes validation errors

Publishing

  • PUBLISH_SITE deploys ALL staged changes, not just specific items
  • Rate limited to 1 publish per minute
  • Must specify at least one domain target (custom or webflow subdomain)
  • This is a production-affecting action; always confirm intent

Authentication Scopes

  • Different operations require different OAuth scopes: sites:read, cms:read, cms:write, pages:read
  • A 403 error typically means missing OAuth scopes
  • Check connection permissions if operations fail with authorization errors

Destructive Operations

  • DELETECOLLECTIONITEM permanently removes CMS items
  • PUBLISH_SITE makes all staged changes live immediately
  • Always confirm with the user before executing these actions

Quick Reference

Task Tool Slug Key Params
List sites WEBFLOWLISTWEBFLOW_SITES (none)
Get site info WEBFLOWGETSITE_INFO site_id
Publish site WEBFLOWPUBLISHSITE siteid, customdomains or publishtowebflow_subdomain
List collections WEBFLOWLISTCOLLECTIONS site_id
Get collection schema WEBFLOWGETCOLLECTION collection_id
List collection items WEBFLOWLISTCOLLECTION_ITEMS collection_id, limit, offset
Get collection item WEBFLOWGETCOLLECTION_ITEM collectionid, itemid
Create collection item WEBFLOWCREATECOLLECTION_ITEM collectionid, fielddata
Update collection item WEBFLOWUPDATECOLLECTION_ITEM collectionid, itemid, fields
Delete collection item WEBFLOWDELETECOLLECTION_ITEM collectionid, itemid
List pages WEBFLOWLISTPAGES site_id, limit, offset
Get page WEBFLOWGETPAGE page_id
Get page DOM WEBFLOWGETPAGE_DOM page_id
Upload asset WEBFLOWUPLOADASSET siteid, filename, filecontent, contenttype, md5
List orders WEBFLOWLISTORDERS site_id, status
Get order WEBFLOWGETORDER siteid, orderid

When to Use

This skill is applicable to execute the workflow or actions described in the overview.

Example

User request:

Automate Webflow CMS collections, site publishing, page management, asset uploads, and ecommerce orders via Rube MCP (Composio).

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.