KosmoKrator

forms

Wufoo CLI for Coding Agents

Use the Wufoo CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.

6 functions 6 read 0 write API key auth

Wufoo CLI for Coding Agents

Let coding agents discover schemas and execute integration functions through CLI commands or MCP.

Use this pattern when another coding agent needs exact commands and schema discovery. 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 Coding Agents
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

FunctionTypeParametersDescription
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

Related Wufoo CLI Pages