CREATE SOMETHING
Concierge Chat

Hosted reviewer operations with live MCP tool parity.

Tool Audit

Reviewer Session

Back to session

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

29
Live tools
17
Read tools
12
Write tools
0
Recorded executions
0
Harness checkpoints
Read Surface

17 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#"
}
Format Agent Review Feedback
[webflow-template-review-mcp] Read-only: validate lane-shaped comprehensive review evidence and format a schema-checked Agent Review Feedback draft. Does not write to Airtable.
0 used
{
  "type": "object",
  "properties": {
    "intake": {
      "type": "object",
      "properties": {
        "template_name": {
          "type": "string",
          "minLength": 1
        },
        "version_id": {
          "type": "string",
          "minLength": 1
        },
        "asset_id": {
          "type": "string",
          "minLength": 1
        },
        "published_url": {
          "type": "string",
          "format": "uri"
        },
        "review_status": {
          "type": "string",
          "minLength": 1
        },
        "submitted_date": {
          "type": "string",
          "minLength": 1
        },
        "agent_review_feedback_was_blank_before_write": {
          "type": "boolean"
        }
      },
      "required": [
        "template_name",
        "version_id",
        "published_url"
      ],
      "additionalProperties": false
    },
    "coverage_matrix": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "lane_id": {
            "type": "string",
            "enum": [
              "intake_context",
              "published_site_validator",
              "e2b_public_site_pass",
              "rubric_dimension_matrix",
              "designer_admin_manual_checks"
            ]
          },
          "label": {
            "type": "string",
            "enum": [
              "Auto",
              "Partial",
              "Manual"
            ]
          },
          "summary": {
            "type": "string",
            "minLength": 1
          },
          "evidence": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "gaps": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1
            }
          }
        },
        "required": [
          "lane_id",
          "label",
          "summary"
        ],
        "additionalProperties": false
      },
      "minItems": 5
    },
    "confirmed_findings": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "minLength": 1
          },
          "label": {
            "$ref": "#/properties/coverage_matrix/items/properties/label"
          },
          "source": {
            "type": "string",
            "enum": [
              "review_context",
              "published_site_validator",
              "e2b_public_site_pass",
              "manual_input",
              "other"
            ]
          },
          "evidence": {
            "type": "string",
            "minLength": 1
          },
          "url": {
            "type": "string",
            "format": "uri"
          },
          "rubric_dimension": {
            "type": "string",
            "enum": [
              "overall_user_experience",
              "graphic_design",
              "typography",
              "interaction_design",
              "hierarchy",
              "layout_design_quality",
              "responsive_design",
              "conversion_best_practices",
              "site_optimization",
              "accessibility"
            ]
          },
          "severity": {
            "type": "string",
            "enum": [
              "critical",
              "warning",
              "info"
            ]
          }
        },
        "required": [
          "title",
          "label",
          "source",
          "evidence"
        ],
        "additionalProperties": false
      }
    },
    "rubric_dimension_matrix": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "dimension": {
            "$ref": "#/properties/confirmed_findings/items/properties/rubric_dimension"
          },
          "label": {
            "$ref": "#/properties/coverage_matrix/items/properties/label"
          },
          "evidence_or_reason": {
            "type": "string",
            "minLength": 1
          }
        },
        "required": [
          "dimension",
          "label",
          "evidence_or_reason"
        ],
        "additionalProperties": false
      },
      "minItems": 10
    },
    "e2b_urls_fetched": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "minItems": 1
    },
    "human_follow_up": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      },
      "minItems": 1
    },
    "manual_checks_remaining": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      },
      "minItems": 1
    },
    "validator_summary": {
      "type": "object",
      "properties": {
        "rubric_coverage": {
          "type": "string",
          "minLength": 1
        },
        "crawl_coverage": {
          "type": "string",
          "minLength": 1
        },
        "pages_analyzed": {
          "type": "integer",
          "minimum": 0
        },
        "critical_errors": {
          "type": "integer",
          "minimum": 0
        },
        "warnings": {
          "type": "integer",
          "minimum": 0
        }
      },
      "additionalProperties": false
    },
    "caveats": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      }
    },
    "generated_by": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "intake",
    "coverage_matrix",
    "confirmed_findings",
    "rubric_dimension_matrix",
    "e2b_urls_fetched",
    "human_follow_up",
    "manual_checks_remaining"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Get Comprehensive Review Contract
[webflow-template-review-mcp] Read-only: return the comprehensive template-review evidence contract, including coverage matrix, rubric dimensions, manual checks, and Agent Review Feedback format.
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 active 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": 100
    },
    "include_completed": {
      "type": "boolean"
    },
    "include_feedback": {
      "type": "boolean"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Prepare Admin Template Fill
[webflow-template-review-mcp] Read-only: generate Webflow Admin template form data plus a fill-only console script/bookmarklet for https://webflow.com/admin/templates. Does not submit the form, create an MRP, or write Airtable.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "include_script": {
      "type": "boolean"
    },
    "include_bookmarklet": {
      "type": "boolean"
    }
  },
  "required": [
    "version_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Prepare Admin Template Fill Batch
[webflow-template-review-mcp] Read-only: generate compact Webflow Admin template form data for multiple template versions. Omits console scripts by default so bulk MRP handoffs stay readable.
0 used
{
  "type": "object",
  "properties": {
    "version_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      },
      "minItems": 1,
      "maxItems": 25
    },
    "include_scripts": {
      "type": "boolean"
    },
    "include_bookmarklets": {
      "type": "boolean"
    }
  },
  "required": [
    "version_ids"
  ],
  "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#"
}
Workflow
[webflow-template-review-mcp] Reviewer onboarding guide — call this FIRST to learn the complete review workflow, tool sequence, analyzer interpretation, and decision criteria. No parameters needed.
0 used
{
  "type": "object",
  "properties": {},
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Write Surface

12 tools

approval gated
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#"
}
Prepare Published Site Sandbox
[webflow-template-review-mcp] Read-only: prepare a bounded published-site sandbox job and self-contained E2B Python runner for comprehensive review evidence. Does not execute E2B or write to Airtable.
0 used
{
  "type": "object",
  "properties": {
    "published_url": {
      "type": "string",
      "format": "uri"
    },
    "run_id": {
      "type": "string",
      "minLength": 1
    },
    "policy_snapshot_id": {
      "type": "string",
      "minLength": 1
    },
    "sandbox_provider": {
      "type": "string",
      "enum": [
        "dify_e2b",
        "direct_e2b"
      ]
    },
    "max_pages": {
      "type": "integer",
      "minimum": 1,
      "maximum": 25
    },
    "max_network_requests": {
      "type": "integer",
      "minimum": 25,
      "maximum": 1000
    },
    "timeout_ms": {
      "type": "integer",
      "minimum": 5000,
      "maximum": 120000
    },
    "viewports": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1
          },
          "width": {
            "type": "integer",
            "minimum": 240,
            "maximum": 3840
          },
          "height": {
            "type": "integer",
            "minimum": 240,
            "maximum": 3840
          }
        },
        "required": [
          "name",
          "width",
          "height"
        ],
        "additionalProperties": false
      },
      "minItems": 1,
      "maxItems": 6
    },
    "allowed_hosts": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      },
      "maxItems": 10
    }
  },
  "required": [
    "published_url"
  ],
  "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 Published Site Validation
[webflow-template-review-mcp] Read-only: run published-site validators for content, assets, accessibility signals, interactions/IX2, GSAP, and custom-code policy evidence. Uses published_url only; does not use Designer/Preview data or write to Airtable.
0 used
{
  "type": "object",
  "properties": {
    "published_url": {
      "type": "string",
      "format": "uri"
    },
    "page_slugs": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      },
      "maxItems": 100
    },
    "checks": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "webflow_way",
          "gsap_custom_code"
        ]
      },
      "minItems": 1
    },
    "max_pages": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "include_raw": {
      "type": "boolean"
    }
  },
  "required": [
    "published_url"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Save Agent Feedback
[webflow-template-review-mcp] Write only supplemental internal agent notes to 📝Agent Review Feedback for a template Asset Version.
0 used
{
  "type": "object",
  "properties": {
    "version_id": {
      "type": "string",
      "minLength": 1
    },
    "agent_review_feedback": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "version_id",
    "agent_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"
      }
    }
  },
  "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#"
}
Harness State

Recent checkpoints

0 recorded

No checkpoints recorded for this session yet.

Execution History

Recent tool activity

clear

No tool activity recorded for this session yet.