CREATE SOMETHING
Concierge Chat

Hosted reviewer operations with live MCP tool parity.

Tool Audit

Smoke test the analyzer on the latest ready-to-review…

Back to session

This route shows the live tool catalog, harness checkpoints, and execution history for the current review session.

28
Live tools
14
Read tools
14
Write tools
1
Recorded executions
20
Harness checkpoints
Read Surface

14 tools

inline
Analyzer Review History
[webflow-template-review-mcp] Reviewer-safe analyzer read: list recent analyzer review jobs for one template version, optionally filtered by job status.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "status": {
      "type": "string",
      "enum": [
        "queued",
        "running",
        "succeeded",
        "failed",
        "canceled"
      ]
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Analyzer Review Job
[webflow-template-review-mcp] Reviewer-safe analyzer read: fetch one queued analyzer review job for a template version and verify it belongs to that version scope.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "job_id": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "version_id",
    "job_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Asset Details
[webflow-template-review-mcp] Get one template review payload by asset_id, including version history.
0 used
{
  "type": "object",
  "properties": {
    "asset_id": {
      "type": "string",
      "minLength": 1
    },
    "versions_limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 500
    }
  },
  "required": [
    "asset_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Asset Search
[webflow-template-review-mcp] Search template assets by name so reviewers can find a specific submission without reading a broad queue slice.
0 used
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "minLength": 1
    },
    "mode": {
      "type": "string",
      "enum": [
        "contains",
        "exact"
      ]
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Field Map
[webflow-template-review-mcp] Return the template review Airtable field map with confirmed and pending mappings.
0 used
{
  "type": "object",
  "properties": {},
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Lane Health
[webflow-template-review-mcp] Runtime health check for Webflow Template Review MCP and Airtable connectivity.
0 used
{
  "type": "object",
  "properties": {},
  "$schema": "http://json-schema.org/draft-07/schema#"
}
My Queue
[webflow-template-review-mcp] List compact template review queue summaries currently assigned to the authenticated reviewer.
0 used
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "ready_to_review",
        "in_review",
        "changes_requested",
        "approved",
        "published"
      ]
    },
    "sort": {
      "type": "string",
      "enum": [
        "submittedDate_desc",
        "submittedDate_asc",
        "decisionDate_desc",
        "decisionDate_asc"
      ]
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 500
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Release List
[webflow-template-review-mcp] List available Asset Release records reviewers can link to approved template versions.
0 used
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 500
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Review Context
[webflow-template-review-mcp] Get the normalized review context for one template version, including reviewer-facing fields and capability flags.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Review Metrics
[webflow-template-review-mcp] Return compact marketplace template review metrics for a recent date window.
0 used
{
  "type": "object",
  "properties": {
    "days": {
      "type": "integer",
      "minimum": 1,
      "maximum": 90
    },
    "end_date": {
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Review Queue
[webflow-template-review-mcp] List compact template review queue summaries using confirmed template Airtable fields.
0 used
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "ready_to_review",
        "in_review",
        "changes_requested",
        "approved",
        "published"
      ]
    },
    "assigned": {
      "type": "string",
      "enum": [
        "any",
        "assigned",
        "unassigned"
      ]
    },
    "sort": {
      "type": "string",
      "enum": [
        "submittedDate_desc",
        "submittedDate_asc",
        "decisionDate_desc",
        "decisionDate_asc"
      ]
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 500
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Version Details
[webflow-template-review-mcp] Get one template version record by version_id.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Version History
[webflow-template-review-mcp] List all versions for a template asset.
0 used
{
  "type": "object",
  "properties": {
    "asset_id": {
      "type": "string",
      "minLength": 1
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 500
    }
  },
  "required": [
    "asset_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Version Search
[webflow-template-review-mcp] Search template Asset Versions by asset name so reviewers can locate review cycles for a specific submission directly.
0 used
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "minLength": 1
    },
    "mode": {
      "type": "string",
      "enum": [
        "contains",
        "exact"
      ]
    },
    "asset_limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    },
    "versions_per_asset_limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Write Surface

14 tools

approval gated
Approve Version
[webflow-template-review-mcp] Approve a template version and optionally update confirmed publishing checklist metadata.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "release_record_id": {
      "type": "string"
    },
    "publishing_checklist": {}
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Assign Reviewer
[webflow-template-review-mcp] Admin/operator write: assign or clear the 📝Reviewer collaborator on a template Asset Version without changing any other review fields.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "review_owner": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1,
          "description": "Airtable collaborator id for the reviewer."
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string",
              "minLength": 1
            }
          },
          "required": [
            "id"
          ],
          "additionalProperties": false
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "version_id",
    "review_owner"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Assign Reviewer
[webflow-template-review-mcp] Reviewer-safe write: assign the current reviewer to a template Asset Version using runtime reviewer identity mapped from the hub account.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Clear Reviewer
[webflow-template-review-mcp] Reviewer-safe write: clear the 📝Reviewer field only when the selected template Asset Version is currently assigned to the authenticated reviewer.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Complete Publishing
[webflow-template-review-mcp] Complete the publishing checklist for a template version and attach a release using either a record id or a local-date lookup.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "release_record_id": {
      "type": "string"
    },
    "release_date_local": {
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "time_zone": {
      "type": "string"
    },
    "approve_version": {
      "type": "boolean"
    },
    "mrp_id_overwrite": {
      "type": "string"
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Reject Version
[webflow-template-review-mcp] Reject a template version with reason and reviewer feedback.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "reject_reason": {
      "type": "string",
      "minLength": 1
    },
    "rejection_feedback": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "version_id",
    "reject_reason",
    "rejection_feedback"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Request Changes
[webflow-template-review-mcp] Reviewer-safe write: set a template version to changes-requested and attach reviewer feedback using the authenticated reviewer identity.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "review_feedback": {
      "type": "string",
      "minLength": 1
    },
    "improvement_areas": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "version_id",
    "review_feedback"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Run Analyzer Review
[webflow-template-review-mcp] Reviewer-safe analyzer action: queue a browser-backed review or re-review for one template version using URLs derived from the review context.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "timeout": {
      "type": "integer",
      "minimum": 1000,
      "maximum": 300000
    },
    "include_manual": {
      "type": "boolean"
    },
    "crawl_max_pages": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    },
    "crawl_max_depth": {
      "type": "integer",
      "minimum": 1,
      "maximum": 4
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Save Draft Feedback
[webflow-template-review-mcp] Reviewer-safe write: save draft reviewer feedback for a template version without changing the official decision state.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "review_feedback": {
      "type": "string",
      "minLength": 1
    },
    "improvement_areas": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Set Review Status
[webflow-template-review-mcp] Reviewer-safe write: set a reviewer-controlled template review status after ownership has been established through self-assignment.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "review_status": {
      "type": "string",
      "enum": [
        "🏃🏾In Review",
        "👀Admin Feedback Review",
        "🔁Response to Review"
      ]
    }
  },
  "required": [
    "version_id",
    "review_status"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Test Analyzer Review
[webflow-template-review-mcp] Reviewer-safe analyzer smoke action: queue a browser-backed review for the newest ready-to-review unassigned template version in the shared queue.
1 used
{
  "type": "object",
  "properties": {
    "target_scope": {
      "type": "string",
      "enum": [
        "latest_ready_to_review_unassigned"
      ]
    },
    "timeout": {
      "type": "integer",
      "minimum": 1000,
      "maximum": 300000
    },
    "include_manual": {
      "type": "boolean"
    },
    "crawl_max_pages": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    },
    "crawl_max_depth": {
      "type": "integer",
      "minimum": 1,
      "maximum": 4
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Update Asset Metadata
[webflow-template-review-mcp] Update confirmed writable template asset fields.
0 used
{
  "type": "object",
  "properties": {
    "asset_id": {
      "type": "string",
      "minLength": 1
    },
    "template_name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "description_short": {
      "type": "string"
    },
    "description_long_html": {
      "type": "string"
    },
    "website_url": {
      "type": "string"
    },
    "preview_site_url": {
      "type": "string"
    },
    "thumbnail_image_url": {
      "anyOf": [
        {
          "type": "string",
          "format": "uri"
        },
        {
          "type": "null"
        }
      ]
    },
    "thumbnail_image_secondary_urls": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      }
    },
    "carousel_image_urls": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      }
    }
  },
  "required": [
    "asset_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Update Publishing Metadata
[webflow-template-review-mcp] Update confirmed asset-side publishing override fields for a template.
0 used
{
  "type": "object",
  "properties": {
    "asset_id": {
      "type": "string",
      "minLength": 1
    },
    "mrp_id_overwrite": {
      "type": "string"
    }
  },
  "required": [
    "asset_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Update Version Review
[webflow-template-review-mcp] Update template version review fields that are confirmed writable in Airtable.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "review_owner": {},
    "review_status": {
      "type": "string"
    },
    "quality_rating": {
      "type": "string"
    },
    "improvement_areas": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "review_feedback": {
      "type": "string"
    },
    "review_checklist": {},
    "publishing_checklist": {},
    "release_record_id": {
      "type": "string"
    },
    "reject_reason": {
      "type": "string"
    },
    "rejection_feedback": {
      "type": "string"
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Harness State

Recent checkpoints

20 recorded
Turn complete
The current lane turn is complete.
completed 4/9/2026, 7:14:15 PM
Drafting response
I need the version_id or asset_id to look up the preview link. If you want, send recz8uhuXy2HnaOIP and I’ll fetch the review context.
responding 4/9/2026, 7:14:13 PM
Planning next step
Reviewing the latest thread context and choosing the next governed MCP step.
planning 4/9/2026, 7:14:12 PM
Loading turn context
Loading the latest thread context, lane policy, and tool catalog.
ingest 4/9/2026, 7:14:12 PM
Turn complete
The current lane turn is complete.
completed 4/9/2026, 7:13:58 PM
Drafting response
I can draft that, but I need the latest analyzer review details for version recz8uhuXy2HnaOIP first. I don’t have the analyzer findings in this thread yet—please share the job ID or let me fetch the analyzer review history for that version.
responding 4/9/2026, 7:13:57 PM
Planning next step
Reviewing the latest thread context and choosing the next governed MCP step.
planning 4/9/2026, 7:13:56 PM
Loading turn context
Loading the latest thread context, lane policy, and tool catalog.
ingest 4/9/2026, 7:13:56 PM
Execution History

Recent tool activity

clear
template_review_test_analyzer_review
Analyzer Review Job shows job template-review-1775761750369-l7mt8c is succeeded for Bauwerk.
completed write 4/9/2026, 7:08:48 PM