@@ -42,7 +42,7 @@ Publish a Webflow site with comprehensive preview, validation, and explicit conf
4242 - Categorize by type (static, CMS template, archived, draft)
43436 . ** List all collections** : Use Webflow MCP's ` data_cms_tool ` with action ` get_collection_list `
44447 . ** Check for draft items** :
45- - For each collection, use Webflow MCP's ` collections_items_list_items `
45+ - For each collection, use Webflow MCP's ` data_cms_tool ` with action ` list_collection_items `
4646 - Count items where ` isDraft: true `
4747 - Count items modified since last publish
48488 . ** Detect issues** :
@@ -267,7 +267,7 @@ All unpublished changes have been successfully published to the Webflow subdomai
267267### Phase 1: Critical Requirements
268268
269269** Site Status Check:**
270- - Always fetch complete site details using ` sites_get `
270+ - Always fetch complete site details using ` data_sites_tool ` with action ` get_site `
271271- Compare ` lastUpdated ` vs ` lastPublished ` to detect unpublished changes
272272- If timestamps are identical, inform user "No changes to publish"
273273- If ` lastPublished ` is null, warn "First publish - entire site will go live"
@@ -297,8 +297,8 @@ All unpublished changes have been successfully published to the Webflow subdomai
297297 - Archived (won't appear on site)
298298
299299** Collections to Check:**
300- - Query all collections with ` collections_list `
301- - For each collection, list items with ` collections_items_list_items `
300+ - Query all collections with ` data_cms_tool ` with action ` get_collection_list `
301+ - For each collection, list items with ` data_cms_tool ` with action ` list_collection_items `
302302- Batch queries if site has many collections (10+ collections)
303303
304304### Phase 3: Pre-Publish Validation
@@ -343,7 +343,7 @@ All unpublished changes have been successfully published to the Webflow subdomai
343343
344344** Publish API Usage:**
345345``` javascript
346- // Correct format for sites_publish
346+ // Correct format for data_sites_tool with action publish_site
347347{
348348 " site_id" : " site-id-here" ,
349349 " publishToWebflowSubdomain" : true , // or false
@@ -376,7 +376,7 @@ All unpublished changes have been successfully published to the Webflow subdomai
376376
377377** Post-Publish Verification:**
3783781 . ** Fetch Updated Site Info:**
379- - Call ` sites_get ` again
379+ - Call ` data_sites_tool ` with action ` get_site ` again
380380 - Verify ` lastPublished ` timestamp updated
381381 - If timestamp didn't update, publish may have failed
382382
0 commit comments