gotoHuman MCP

Official
by gotohuman
Verified

request-human-review-with-form

Request a human review with a form. NOTE: If you don't have a form ID yet, list all available forms using the list-forms tool first. To know what to pass for fieldData, you need to fetch the schema for the form fields using the get-form-schema tool.

Input Schema

NameRequiredDescriptionDefault
assignToUsersNoOptional list of user emails to assign the review to
fieldDataYesThe field data to include in the review request. Note that this is a dynamic schema that you need to fetch first using the get-form-schema tool.
formIdYesThe form ID to request a human review for
metadataNoOptional additional data that will be incl. in the webhook response after form submission. Incl. everything required to proceed with your workflow.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignToUsers": { "description": "Optional list of user emails to assign the review to", "items": { "type": "string" }, "type": "array" }, "fieldData": { "additionalProperties": {}, "description": "The field data to include in the review request. Note that this is a dynamic schema that you need to fetch first using the get-form-schema tool.", "type": "object" }, "formId": { "description": "The form ID to request a human review for", "type": "string" }, "metadata": { "additionalProperties": { "type": "string" }, "description": "Optional additional data that will be incl. in the webhook response after form submission. Incl. everything required to proceed with your workflow.", "type": "object" } }, "required": [ "formId", "fieldData" ], "type": "object" }