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_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Formstack CLIHeadless setup and direct function calls. Formstack MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Formstack MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Formstack.
Claude Code Formstack MCP setup for Claude Code. Cursor Formstack MCP setup for Cursor. Codex Formstack MCP setup for Codex. OpenAI Agents Formstack MCP setup for OpenAI Agents SDK. Claude Agent SDK Formstack MCP setup for Claude Agent SDK. Vercel AI SDK Formstack MCP setup for Vercel AI SDK. LangChain Formstack MCP setup for LangChain. LangGraph Formstack MCP setup for LangGraph. CrewAI Formstack MCP setup for CrewAI. MCP clients Formstack MCP setup for Generic MCP Clients.
Formstack CLI Matrix
Use these pages for direct Formstack CLI workflows in scripts, CI, cron, and agent wrappers.
CI Formstack CLI for CI. Cron Jobs Formstack CLI for cron jobs. Shell Scripts Formstack CLI for shell scripts. Headless Automation Formstack CLI for headless automation. Coding Agents Formstack CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |