Field Types
All 20 field types available when building forms via MCP.
Input Fields
textSingle-line text input
textareaMulti-line text input
emailEmail input with built-in validation
numberNumeric input
phonePhone number input
urlURL input
dateDate picker
selectrequires optionsDropdown select
radiorequires optionsRadio buttons
checkboxrequires optionsCheckbox group
toggleOn/off switch
ratingStar rating input
sliderRange slider
fileFile upload
Display Fields (No User Input)
dividerVisual divider or heading
infoInformational text block
redirectRedirect to URL after submission
imageDisplay an image
videoEmbed a video
downloadDownload link or button
Options Format
For select, radio, and checkbox fields, include an options array in the data object:
"options": [
{ "label": "Cambodia", "value": "kh" },
{ "label": "United States", "value": "us" }
]Each option has a label (display text) and value (stored value). Labels are shown to users, values are stored in submissions.