KosmoKrator

forms

Tally CLI for AI Agents

Use the Tally CLI from KosmoKrator to call Tally tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

6 functions 6 read 0 write Bearer token auth

Tally CLI Setup

Tally can be configured headlessly with `kosmokrator integrations:configure tally`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure tally --set access_token="$TALLY_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor tally --json
kosmokrator integrations:status --json

Credentials

Authentication type: Bearer token bearer_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
access_token TALLY_ACCESS_TOKEN Secret secret yes Access Token
url TALLY_URL URL url no API Base URL

Call Tally Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call tally.tally_get_current_user '{}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:tally tally_get_current_user '{}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

kosmo integrations:docs tally --json
kosmo integrations:docs tally.tally_get_current_user --json
kosmo integrations:schema tally.tally_get_current_user --json
kosmo integrations:search "Tally" --json
kosmo integrations:list --json

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Tally.

tally.tally_get_current_user

Read read

Get the authenticated user's profile information, including name, email, and account details.

Parameters
none

Generic CLI call

kosmo integrations:call tally.tally_get_current_user '{}' --json

Provider shortcut

kosmo integrations:tally tally_get_current_user '{}' --json

tally.tally_get_form

Read read

Get full details of a specific Tally form by its ID, including form structure, fields, and settings.

Parameters
form_id

Generic CLI call

kosmo integrations:call tally.tally_get_form '{"form_id":"example_form_id"}' --json

Provider shortcut

kosmo integrations:tally tally_get_form '{"form_id":"example_form_id"}' --json

tally.tally_get_submission

Read read

Get full details of a specific form submission by its ID, including all field responses and metadata.

Parameters
submission_id

Generic CLI call

kosmo integrations:call tally.tally_get_submission '{"submission_id":"example_submission_id"}' --json

Provider shortcut

kosmo integrations:tally tally_get_submission '{"submission_id":"example_submission_id"}' --json

tally.tally_list_forms

Read read

List all Tally forms accessible to the authenticated user. Returns form IDs, titles, status, and submission counts. Supports pagination.

Parameters
page, limit

Generic CLI call

kosmo integrations:call tally.tally_list_forms '{"page":1,"limit":1}' --json

Provider shortcut

kosmo integrations:tally tally_list_forms '{"page":1,"limit":1}' --json

tally.tally_list_submissions

Read read

List all submissions for a specific Tally form. Returns respondent answers, submission dates, and metadata. Supports pagination.

Parameters
form_id, page, limit

Generic CLI call

kosmo integrations:call tally.tally_list_submissions '{"form_id":"example_form_id","page":1,"limit":1}' --json

Provider shortcut

kosmo integrations:tally tally_list_submissions '{"form_id":"example_form_id","page":1,"limit":1}' --json

tally.tally_list_workspaces

Read read

List all workspaces accessible to the authenticated Tally user. Returns workspace names, IDs, and member info.

Parameters
none

Generic CLI call

kosmo integrations:call tally.tally_list_workspaces '{}' --json

Provider shortcut

kosmo integrations:tally tally_list_workspaces '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

tally.tally_get_current_user

Get the authenticated user's profile information, including name, email, and account details.

Operation
Read read
Schema command
kosmo integrations:schema tally.tally_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

tally.tally_get_form

Get full details of a specific Tally form by its ID, including form structure, fields, and settings.

Operation
Read read
Schema command
kosmo integrations:schema tally.tally_get_form --json
ParameterTypeRequiredDescription
form_id string yes The Tally form ID (e.g., "mVlBRN").

tally.tally_get_submission

Get full details of a specific form submission by its ID, including all field responses and metadata.

Operation
Read read
Schema command
kosmo integrations:schema tally.tally_get_submission --json
ParameterTypeRequiredDescription
submission_id string yes The Tally submission ID.

tally.tally_list_forms

List all Tally forms accessible to the authenticated user. Returns form IDs, titles, status, and submission counts. Supports pagination.

Operation
Read read
Schema command
kosmo integrations:schema tally.tally_list_forms --json
ParameterTypeRequiredDescription
page integer no Page number for pagination (default: 1).
limit integer no Number of forms per page (default: 20, max: 100).

tally.tally_list_submissions

List all submissions for a specific Tally form. Returns respondent answers, submission dates, and metadata. Supports pagination.

Operation
Read read
Schema command
kosmo integrations:schema tally.tally_list_submissions --json
ParameterTypeRequiredDescription
form_id string yes The Tally form ID to retrieve submissions for (e.g., "mVlBRN").
page integer no Page number for pagination (default: 1).
limit integer no Number of submissions per page (default: 20, max: 100).

tally.tally_list_workspaces

List all workspaces accessible to the authenticated Tally user. Returns workspace names, IDs, and member info.

Operation
Read read
Schema command
kosmo integrations:schema tally.tally_list_workspaces --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.