productivity
Wufoo MCP, CLI, and Lua Integration for AI Agents
Wufoo integration docs for AI agents: MCP gateway setup, Wufoo CLI commands, Lua API reference, credentials, and function schemas.Wufoo for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
wufoo.wufoo_get_current_user | Read read | 0 | Get the authenticated Wufoo user's profile. Returns account details such as name, email, and organization. |
wufoo.wufoo_list_users | Read read | 1 | List Wufoo account users visible to the API key. |
wufoo.wufoo_list_forms | Read read | 0 | List all forms in your Wufoo account. Returns form identifiers, names, descriptions, and metadata that can be used with other Wufoo tools. |
wufoo.wufoo_get_form | Read read | 1 | Get details for a specific Wufoo form by its identifier. Returns the full form definition including fields, settings, and metadata. |
wufoo.wufoo_list_fields | Read read | 1 | List all fields for a specific Wufoo form. Returns field types, labels, API IDs, and validation rules. Use this to discover field IDs before submitting entries. |
wufoo.wufoo_list_entries | Read read | 4 | 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_count_entries | Read read | 2 | Count entries submitted to a Wufoo form with optional filters. |
wufoo.wufoo_get_entry | Read read | 2 | Find a single Wufoo form entry by form ID and entry ID using the documented form entries endpoint. |
wufoo.wufoo_submit_entry | Write write | 2 | Submit a new entry to a Wufoo form. Provide field values keyed by their API field IDs (e.g., Field1, Field2). Use list_fields to discover the field IDs for a form. |
wufoo.wufoo_list_form_comments | Read read | 2 | List comments made on entries for a Wufoo form. |
wufoo.wufoo_count_form_comments | Read read | 2 | Count comments made on entries for a Wufoo form. |
wufoo.wufoo_list_reports | Read read | 0 | List all reports in your Wufoo account. Returns report identifiers, names, descriptions, and the forms they are associated with. |
wufoo.wufoo_get_report | Read read | 1 | Get details for a specific Wufoo report. |
wufoo.wufoo_list_report_entries | Read read | 2 | List entries exposed by a Wufoo report. |
wufoo.wufoo_count_report_entries | Read read | 2 | Count entries exposed by a Wufoo report. |
wufoo.wufoo_list_report_fields | Read read | 2 | List field definitions used by a Wufoo report. |
wufoo.wufoo_list_report_widgets | Read read | 2 | List widgets configured on a Wufoo report. |
wufoo.wufoo_add_webhook | Write write | 4 | Add a webhook to a Wufoo form. |
wufoo.wufoo_delete_webhook | Write write | 2 | Delete a webhook from a Wufoo form. |
wufoo.wufoo_api_get | Read read | 2 | Call a documented Wufoo API v3 GET endpoint. |
wufoo.wufoo_api_post | Write write | 2 | Call a documented Wufoo API v3 POST endpoint. |
wufoo.wufoo_api_put | Write write | 2 | Call a documented Wufoo API v3 PUT endpoint. |
wufoo.wufoo_api_delete | Write write | 2 | Call a documented Wufoo API v3 DELETE endpoint. |