forms
Wufoo CLI for Headless Automation
Use the Wufoo CLI for headless automation with headless JSON commands, schema discovery, credentials, and permission controls.
6 functions 6 read 0 write API key auth
Wufoo CLI for Headless Automation
Use KosmoKrator as a non-interactive integration runtime for local automations and wrappers.
Use headless automation when another tool needs a stable local command surface. The Wufoo CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# Wufoo CLI for Headless Automation
kosmokrator integrations:configure wufoo --set api_key="$WUFOO_API_KEY" --enable --read allow --write ask --json
kosmo integrations:call wufoo.wufoo_get_current_user '{}' --json Discovery Before Execution
Agents and scripts can inspect Wufoo docs and schemas before choosing a function.
kosmo integrations:docs wufoo --json
kosmo integrations:docs wufoo.wufoo_get_current_user --json
kosmo integrations:schema wufoo.wufoo_get_current_user --json
kosmo integrations:search "Wufoo" --json
kosmo integrations:list --json Useful Wufoo CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
wufoo.wufoo_get_current_user | Read | none | Get the authenticated Wufoo user's profile. Returns account details such as name, email, and organization. |
wufoo.wufoo_get_entry | Read | entry_id | Get a single Wufoo form entry by its identifier. Returns all field values and submission metadata for the entry. |
wufoo.wufoo_get_form | Read | form_id | Get details for a specific Wufoo form by its identifier. Returns the full form definition including fields, settings, and metadata. |
wufoo.wufoo_list_entries | Read | form_id, page, page_size, filters | List entries submitted to a Wufoo form. Supports pagination and optional filters to narrow results. Use the page and pageSize parameters to paginate through large result sets. |
wufoo.wufoo_list_forms | Read | none | List all forms in your Wufoo account. Returns form identifiers, names, descriptions, and metadata that can be used with other Wufoo tools. |
wufoo.wufoo_list_reports | Read | none | List all reports in your Wufoo account. Returns report identifiers, names, descriptions, and the forms they are associated with. |
Automation Notes
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.