MR Labs

Field Types

All 20 field types available when building forms via MCP.

Input Fields

text

Single-line text input

textarea

Multi-line text input

email

Email input with built-in validation

number

Numeric input

phone

Phone number input

url

URL input

date

Date picker

selectrequires options

Dropdown select

radiorequires options

Radio buttons

checkboxrequires options

Checkbox group

toggle

On/off switch

rating

Star rating input

slider

Range slider

file

File upload

Display Fields (No User Input)

divider

Visual divider or heading

info

Informational text block

redirect

Redirect to URL after submission

image

Display an image

video

Embed a video

download

Download 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.