KosmoKrator

productivity

Crowdin CLI for Coding Agents

Use the Crowdin CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 7 read 0 write API token auth

Crowdin CLI for Coding Agents

Let coding agents discover schemas and execute integration functions through CLI commands or MCP.

Use this pattern when another coding agent needs exact commands and schema discovery. The Crowdin CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Crowdin CLI for Coding Agents
kosmokrator integrations:configure crowdin --set api_token="$CROWDIN_API_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call crowdin.crowdin_list_projects '{"group_id":1,"limit":1,"offset":1}' --json

Discovery Before Execution

Agents and scripts can inspect Crowdin docs and schemas before choosing a function.

kosmo integrations:docs crowdin --json
kosmo integrations:docs crowdin.crowdin_list_projects --json
kosmo integrations:schema crowdin.crowdin_list_projects --json
kosmo integrations:search "Crowdin" --json
kosmo integrations:list --json

Useful Crowdin CLI Functions

FunctionTypeParametersDescription
crowdin.crowdin_list_projects Read group_id, limit, offset List Crowdin projects. Returns project IDs, names, target languages, and other metadata. Supports pagination and filtering by group.
crowdin.crowdin_get_project Read project_id Get details of a specific Crowdin project by ID. Returns project name, description, source/target languages, and other settings.
crowdin.crowdin_list_strings Read project_id, file_id, branch_id, limit, offset List source strings in a Crowdin project. Returns string IDs, text, context, and file associations. Supports filtering by file or branch.
crowdin.crowdin_get_string Read project_id, string_id Get details of a specific source string in a Crowdin project. Returns string text, context, file path, and other metadata.
crowdin.crowdin_list_translations Read project_id, string_id, language_id, limit, offset List translations in a Crowdin project. Returns translated text, language info, and approval status. Supports filtering by string or language.
crowdin.crowdin_list_languages Read limit, offset List languages supported by Crowdin. Returns language IDs, locale codes (e.g., "en", "de", "fr"), names, and text direction.
crowdin.crowdin_get_current_user Read none Get the currently authenticated Crowdin user profile. Returns username, email, display name, and avatar URL.

Automation Notes

Related Crowdin CLI Pages