List KoboToolbox Forms
kobo_list_formsFind and list Kobo surveys/forms accessible with your API token. Filter by name and view deployment status and submission counts.
Instructions
List forms/projects (surveys) accessible with the configured API token.
Does NOT return submission data — use kobo_list_submissions for that.
Args:
search (string, optional): filter forms whose name contains this text
limit (number): max forms to return, 1-100 (default 30)
offset (number): pagination offset (default 0)
response_format ('markdown' | 'json')
Returns: form uid, name, deployment status, and submission count for each form.
Examples:
Use when: "What forms do I have on Kobo?" -> no params
Use when: "Find my cocoa tracking form" -> search="cocoa"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of forms to return | |
| offset | No | Number of forms to skip, for pagination | |
| search | No | Optional text to filter forms by name | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |