productivity
Tally MCP, CLI, and Lua Integration for AI Agents
Tally integration docs for AI agents: MCP gateway setup, Tally CLI commands, Lua API reference, credentials, and function schemas.Tally 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 |
|---|---|---|---|
tally.tally_api_delete | Read read | 2 | Call a documented Tally DELETE API path. Prefer named Tally tools when one exists. |
tally.tally_api_get | Read read | 2 | Call a documented Tally GET API path. Prefer named Tally tools when one exists. |
tally.tally_api_patch | Read read | 2 | Call a documented Tally PATCH API path. Prefer named Tally tools when one exists. |
tally.tally_api_post | Read read | 2 | Call a documented Tally POST API path. Prefer named Tally tools when one exists. |
tally.tally_cancel_organization_invite | Write write | 2 | Cancel a pending Tally organization invite. |
tally.tally_create_form | Write write | 5 | Create a new Tally form using blocks, settings, a workspace, a template, and an optional initial status. |
tally.tally_create_organization_invite | Write write | 3 | Invite users to one or more Tally workspaces inside an organization. |
tally.tally_create_webhook | Write write | 6 | Create a Tally webhook subscription for a form. |
tally.tally_create_workspace | Write write | 1 | Create a Tally workspace by name. |
tally.tally_delete_form | Write write | 1 | Delete a Tally form by ID. |
tally.tally_delete_submission | Write write | 2 | Delete a Tally submission by form ID and submission ID. |
tally.tally_delete_webhook | Write write | 1 | Delete a Tally webhook subscription by ID. |
tally.tally_delete_workspace | Write write | 1 | Delete a Tally workspace by ID. |
tally.tally_get_current_user | Read read | 0 | Get the authenticated user's profile information, including name, email, and account details. |
tally.tally_get_form | Read read | 1 | Get full details of a specific Tally form by its ID, including form structure, fields, and settings. |
tally.tally_get_submission | Read read | 2 | Get full details of a specific form submission by its ID, including all field responses and metadata. |
tally.tally_get_workspace | Read read | 1 | Get a Tally workspace by ID. |
tally.tally_list_blocks | Read read | 1 | List blocks for a Tally form. |
tally.tally_list_forms | Read read | 3 | List all Tally forms accessible to the authenticated user. Returns form IDs, titles, status, and submission counts. Supports pagination. |
tally.tally_list_organization_invites | Read read | 1 | List pending invites for a Tally organization. |
tally.tally_list_organization_users | Read read | 1 | List users in a Tally organization. |
tally.tally_list_questions | Read read | 1 | List questions for a Tally form. |
tally.tally_list_submissions | Read read | 7 | List all submissions for a specific Tally form. Returns respondent answers, submission dates, and metadata. Supports pagination. |
tally.tally_list_webhook_events | Read read | 2 | List delivery events for a Tally webhook. |
tally.tally_list_webhooks | Read read | 2 | List Tally webhook subscriptions with pagination. |
tally.tally_list_workspaces | Read read | 1 | List all workspaces accessible to the authenticated Tally user. Returns workspace names, IDs, and member info. |
tally.tally_remove_organization_user | Write write | 2 | Remove a user from a Tally organization. |
tally.tally_retry_webhook_event | Read read | 2 | Retry a Tally webhook delivery event. |
tally.tally_update_blocks | Write write | 2 | Replace the block tree for a Tally form. |
tally.tally_update_form | Write write | 5 | Update a Tally form name, status, blocks, or settings. |
tally.tally_update_question | Write write | 3 | Update a Tally question title by form and question ID. |
tally.tally_update_webhook | Write write | 7 | Update a Tally webhook target, event types, headers, signing secret, or enabled state. |
tally.tally_update_workspace | Write write | 2 | Rename a Tally workspace. |