KosmoKrator

forms

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.

8 functions 6 read 2 write Manual OAuth token auth

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.

Machine-Readable Metadata
integration_slug
formstack
route_slug
formstack
package
formstack
auth_strategy
oauth2_manual_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Formstack MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Formstack.

Formstack CLI Matrix

Use these pages for direct Formstack CLI workflows in scripts, CI, cron, and agent wrappers.

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.