KosmoKrator

productivity

Formstack MCP, CLI, and Lua Integration for AI Agents

Formstack integration docs for AI agents: MCP gateway setup, Formstack CLI commands, Lua API reference, credentials, and function schemas.

Formstack 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

FunctionTypeParametersDescription
formstack.formstack_list_forms Read read 3 List all forms in your Formstack account. Returns form names, IDs, and pagination info. Use search to filter by name.
formstack.formstack_get_form Read read 1 Get details and field structure of a specific Formstack form. Returns all fields, their types, labels, and options.
formstack.formstack_list_submissions Read read 4 List submissions for a specific Formstack form. Returns submission IDs, timestamps, and optionally expanded field data.
formstack.formstack_get_submission Read read 1 Get details of a specific Formstack submission. Returns all field values, timestamps, and metadata.
formstack.formstack_create_submission Write write 2 Create a new submission for a Formstack form. Pass field values using the field keys from the form structure. Use Get Form first to discover available fields.
formstack.formstack_delete_submission Write write 1 Delete a Formstack submission. This action is permanent and cannot be undone.
formstack.formstack_list_folders Read read 0 List all folders in your Formstack account. Folders are used to organize forms.
formstack.formstack_get_current_user Read read 0 Get the currently authenticated Formstack user profile. Returns name, email, and account info.