CREATE SOMETHING
Concierge Chat

Hosted reviewer operations with live MCP tool parity.

Tool Audit

Show the unassigned ready-to-review queue

Back to session

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

24
Live tools
12
Read tools
12
Write tools
1
Recorded executions
6
Harness checkpoints
Read Surface

12 tools

inline
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.
1 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

12 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",
        "enum": [
          "Template: Overall user experience",
          "Template: Accessibility",
          "Template: Conversion best practices",
          "Template: Graphic design",
          "Template: Guidelines compliance",
          "Template: Hierarchy",
          "Template: Interaction design",
          "Template: Layout design quality",
          "Template: Responsive design",
          "Template: Site optimization",
          "Template: Technical requirements",
          "Template: Typography"
        ]
      }
    }
  },
  "required": [
    "version_id",
    "review_feedback"
  ],
  "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",
        "enum": [
          "Template: Overall user experience",
          "Template: Accessibility",
          "Template: Conversion best practices",
          "Template: Graphic design",
          "Template: Guidelines compliance",
          "Template: Hierarchy",
          "Template: Interaction design",
          "Template: Layout design quality",
          "Template: Responsive design",
          "Template: Site optimization",
          "Template: Technical requirements",
          "Template: Typography"
        ]
      }
    }
  },
  "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#"
}
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",
      "enum": [
        "🆕Ready for Review",
        "🏃🏾In Review",
        "👀Admin Feedback Review",
        "📤Changes Requested",
        "🔁Response to Review",
        "✅Approved",
        "❌Rejected",
        "☠️Archived"
      ]
    },
    "quality_rating": {
      "type": "string",
      "enum": [
        "❌Low quality",
        "⚠️Satisfactory",
        "✅Good",
        "🥇Exceptional"
      ]
    },
    "improvement_areas": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "Template: Overall user experience",
          "Template: Accessibility",
          "Template: Conversion best practices",
          "Template: Graphic design",
          "Template: Guidelines compliance",
          "Template: Hierarchy",
          "Template: Interaction design",
          "Template: Layout design quality",
          "Template: Responsive design",
          "Template: Site optimization",
          "Template: Technical requirements",
          "Template: Typography"
        ]
      }
    },
    "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

6 recorded
Turn complete
The current lane turn is complete.
completed 4/9/2026, 5:46:02 AM
Drafting response
Drafting a concise reply from the latest lane state.
responding 4/9/2026, 5:46:00 AM
Planning next step
Checking whether another governed MCP step is needed after the latest tool result.
planning 4/9/2026, 5:45:54 AM
Running Review Queue
Running Review Queue through the governed lane runtime.
executing 4/9/2026, 5:45:28 AM
Planning next step
Reviewing the latest thread context and choosing the next governed MCP step.
planning 4/9/2026, 5:45:27 AM
Loading turn context
Loading the latest thread context, lane policy, and tool catalog.
ingest 4/9/2026, 5:45:27 AM
Execution History

Recent tool activity

clear
template_review_list_queue
Review Queue returned 29 items for unassigned with status ready to review.
completed read 4/9/2026, 5:45:28 AM