Manage form endpoints: list, create, inspect, update, and delete.
List all forms in your account.
MCP equivalent: list_forms
Create a new form endpoint interactively.
| Prompt | Required | Description |
|---|---|---|
| Form name | Yes | Display name for the form |
| Form slug | Yes | URL-safe identifier (lowercase) |
| Allowed origins | No | Comma-separated origin URLs. Blank allows all origins |
| Enable captcha? | Yes | y/n -- if yes, prompts for captcha secret |
| Captcha secret | If captcha enabled | Your captcha provider secret key |
MCP equivalent: create_form
Show full details for a form including all destinations.
<formId> argument prints usage and exitsNot foundMCP equivalent: get_form
Update form settings interactively. Press Enter to keep any current value.
| Prompt | Default | Description |
|---|---|---|
| Name | Current name | New display name |
| Allowed origins | Current origins | Comma-separated list |
| Enabled (yes/no) | Current state | Enable or disable the form |
If no fields change, prints No changes. and exits.
MCP equivalent: update_form
Permanently delete a form and all its destinations.
The CLI warns and requires confirmation:
Deletion is permanent. All destinations attached to the form are also deleted. The public key stops accepting submissions immediately.
MCP equivalent: delete_form