KosmoKrator

productivity

Typeform CLI for AI Agents

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

10 functions 7 read 3 write Bearer token auth

Typeform CLI Setup

Typeform can be configured headlessly with `kosmokrator integrations:configure typeform`.

# 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 typeform --set access_token="$TYPEFORM_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor typeform --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 TYPEFORM_ACCESS_TOKEN Secret secret yes Personal Access Token

Call Typeform Headlessly

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

kosmo integrations:call typeform.typeform_list_forms '{
  "page": 1,
  "page_size": 1,
  "search": "example_search",
  "workspace_id": "example_workspace_id"
}' --json

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

kosmo integrations:typeform typeform_list_forms '{
  "page": 1,
  "page_size": 1,
  "search": "example_search",
  "workspace_id": "example_workspace_id"
}' --json

Agent Discovery Commands

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

kosmo integrations:docs typeform --json
kosmo integrations:docs typeform.typeform_list_forms --json
kosmo integrations:schema typeform.typeform_list_forms --json
kosmo integrations:search "Typeform" --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 Typeform.

typeform.typeform_list_forms

Read read

List Typeform forms with optional search and filtering by workspace.

Parameters
page, page_size, search, workspace_id

Generic CLI call

kosmo integrations:call typeform.typeform_list_forms '{"page":1,"page_size":1,"search":"example_search","workspace_id":"example_workspace_id"}' --json

Provider shortcut

kosmo integrations:typeform typeform_list_forms '{"page":1,"page_size":1,"search":"example_search","workspace_id":"example_workspace_id"}' --json

typeform.typeform_get_form

Read read

Get details of a specific Typeform form including its fields and settings.

Parameters
form_id

Generic CLI call

kosmo integrations:call typeform.typeform_get_form '{"form_id":"example_form_id"}' --json

Provider shortcut

kosmo integrations:typeform typeform_get_form '{"form_id":"example_form_id"}' --json

typeform.typeform_list_responses

Read read

List responses for a Typeform form with filtering by date, completion status, and search.

Parameters
form_id, page_size, after, before, completed, sort, query

Generic CLI call

kosmo integrations:call typeform.typeform_list_responses '{"form_id":"example_form_id","page_size":1,"after":"example_after","before":"example_before","completed":true,"sort":"example_sort","query":"example_query"}' --json

Provider shortcut

kosmo integrations:typeform typeform_list_responses '{"form_id":"example_form_id","page_size":1,"after":"example_after","before":"example_before","completed":true,"sort":"example_sort","query":"example_query"}' --json

typeform.typeform_get_response

Read read

Get a single Typeform response by ID, including answers and metadata.

Parameters
form_id, response_id

Generic CLI call

kosmo integrations:call typeform.typeform_get_response '{"form_id":"example_form_id","response_id":"example_response_id"}' --json

Provider shortcut

kosmo integrations:typeform typeform_get_response '{"form_id":"example_form_id","response_id":"example_response_id"}' --json

typeform.typeform_delete_response

Write write

Delete a Typeform response permanently.

Parameters
form_id, response_id

Generic CLI call

kosmo integrations:call typeform.typeform_delete_response '{"form_id":"example_form_id","response_id":"example_response_id"}' --json

Provider shortcut

kosmo integrations:typeform typeform_delete_response '{"form_id":"example_form_id","response_id":"example_response_id"}' --json

typeform.typeform_list_workspaces

Read read

List Typeform workspaces with optional search.

Parameters
page, page_size, search

Generic CLI call

kosmo integrations:call typeform.typeform_list_workspaces '{"page":1,"page_size":1,"search":"example_search"}' --json

Provider shortcut

kosmo integrations:typeform typeform_list_workspaces '{"page":1,"page_size":1,"search":"example_search"}' --json

typeform.typeform_get_workspace

Read read

Get details of a specific Typeform workspace.

Parameters
workspace_id

Generic CLI call

kosmo integrations:call typeform.typeform_get_workspace '{"workspace_id":"example_workspace_id"}' --json

Provider shortcut

kosmo integrations:typeform typeform_get_workspace '{"workspace_id":"example_workspace_id"}' --json

typeform.typeform_create_webhook

Write write

Create or update a webhook for a Typeform form to receive response notifications.

Parameters
form_id, tag, url, enabled

Generic CLI call

kosmo integrations:call typeform.typeform_create_webhook '{"form_id":"example_form_id","tag":"example_tag","url":"example_url","enabled":true}' --json

Provider shortcut

kosmo integrations:typeform typeform_create_webhook '{"form_id":"example_form_id","tag":"example_tag","url":"example_url","enabled":true}' --json

typeform.typeform_list_webhooks

Read read

List all webhooks configured for a Typeform form.

Parameters
form_id

Generic CLI call

kosmo integrations:call typeform.typeform_list_webhooks '{"form_id":"example_form_id"}' --json

Provider shortcut

kosmo integrations:typeform typeform_list_webhooks '{"form_id":"example_form_id"}' --json

typeform.typeform_delete_webhook

Write write

Delete a webhook from a Typeform form.

Parameters
form_id, tag

Generic CLI call

kosmo integrations:call typeform.typeform_delete_webhook '{"form_id":"example_form_id","tag":"example_tag"}' --json

Provider shortcut

kosmo integrations:typeform typeform_delete_webhook '{"form_id":"example_form_id","tag":"example_tag"}' --json

Function Schemas

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

typeform.typeform_list_forms

List Typeform forms with optional search and filtering by workspace.

Operation
Read read
Schema command
kosmo integrations:schema typeform.typeform_list_forms --json
ParameterTypeRequiredDescription
page integer no Page number for pagination (default: 1).
page_size integer no Number of forms per page (default: 10, max: 200).
search string no Search term to filter forms by title.
workspace_id string no Filter forms by workspace ID.

typeform.typeform_get_form

Get details of a specific Typeform form including its fields and settings.

Operation
Read read
Schema command
kosmo integrations:schema typeform.typeform_get_form --json
ParameterTypeRequiredDescription
form_id string yes The unique ID of the Typeform form.

typeform.typeform_list_responses

List responses for a Typeform form with filtering by date, completion status, and search.

Operation
Read read
Schema command
kosmo integrations:schema typeform.typeform_list_responses --json
ParameterTypeRequiredDescription
form_id string yes The unique ID of the Typeform form.
page_size integer no Number of responses per page (default: 25, max: 1000).
after string no Only responses submitted after this date (ISO 8601, e.g., "2024-01-01T00:00:00Z").
before string no Only responses submitted before this date (ISO 8601).
completed boolean no Filter by completion status. "true" for completed, "false" for incomplete.
sort string no Sort order for responses. e.g., "submitted_at,desc" or "submitted_at,asc".
query string no Search query to filter responses by answers.

typeform.typeform_get_response

Get a single Typeform response by ID, including answers and metadata.

Operation
Read read
Schema command
kosmo integrations:schema typeform.typeform_get_response --json
ParameterTypeRequiredDescription
form_id string yes The unique ID of the Typeform form.
response_id string yes The unique ID of the response.

typeform.typeform_delete_response

Delete a Typeform response permanently.

Operation
Write write
Schema command
kosmo integrations:schema typeform.typeform_delete_response --json
ParameterTypeRequiredDescription
form_id string yes The unique ID of the Typeform form.
response_id string yes The unique ID of the response to delete.

typeform.typeform_list_workspaces

List Typeform workspaces with optional search.

Operation
Read read
Schema command
kosmo integrations:schema typeform.typeform_list_workspaces --json
ParameterTypeRequiredDescription
page integer no Page number for pagination (default: 1).
page_size integer no Number of workspaces per page (default: 10, max: 200).
search string no Search term to filter workspaces by name.

typeform.typeform_get_workspace

Get details of a specific Typeform workspace.

Operation
Read read
Schema command
kosmo integrations:schema typeform.typeform_get_workspace --json
ParameterTypeRequiredDescription
workspace_id string yes The unique ID of the Typeform workspace.

typeform.typeform_create_webhook

Create or update a webhook for a Typeform form to receive response notifications.

Operation
Write write
Schema command
kosmo integrations:schema typeform.typeform_create_webhook --json
ParameterTypeRequiredDescription
form_id string yes The unique ID of the Typeform form.
tag string yes A unique tag to identify this webhook.
url string yes The endpoint URL where Typeform will send webhook events.
enabled boolean no Whether the webhook is enabled (default: true).

typeform.typeform_list_webhooks

List all webhooks configured for a Typeform form.

Operation
Read read
Schema command
kosmo integrations:schema typeform.typeform_list_webhooks --json
ParameterTypeRequiredDescription
form_id string yes The unique ID of the Typeform form.

typeform.typeform_delete_webhook

Delete a webhook from a Typeform form.

Operation
Write write
Schema command
kosmo integrations:schema typeform.typeform_delete_webhook --json
ParameterTypeRequiredDescription
form_id string yes The unique ID of the Typeform form.
tag string yes The unique tag of the webhook to delete.

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.