KosmoKrator

productivity

Wrike CLI for Cron Jobs

Use the Wrike CLI for cron jobs with headless JSON commands, schema discovery, credentials, and permission controls.

14 functions 10 read 4 write Bearer token auth

Wrike CLI for Cron Jobs

Schedule repeatable integration workflows from cron while keeping credentials in KosmoKrator config.

Use the headless CLI from cron when an operation should run without an interactive agent session. The Wrike CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Wrike CLI for Cron Jobs
kosmokrator integrations:configure wrike --set access_token="$WRIKE_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call wrike.wrike_create_task '{"folderId":"example_folderId","title":"example_title","description":"example_description","importance":"example_importance","status":"example_status","dates":"example_dates","assignees":"example_assignees"}' --json

Discovery Before Execution

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

kosmo integrations:docs wrike --json
kosmo integrations:docs wrike.wrike_create_task --json
kosmo integrations:schema wrike.wrike_create_task --json
kosmo integrations:search "Wrike" --json
kosmo integrations:list --json

Useful Wrike CLI Functions

FunctionTypeParametersDescription
wrike.wrike_create_task Write folderId, title, description, importance, status, dates, assignees Create a new task in Wrike.
wrike.wrike_get_task Read id Get detailed information about a Wrike task.
wrike.wrike_update_task Write task_id, title, description, status, importance, dates_due Update an existing Wrike task.
wrike.wrike_list_tasks Read folderId, status, importance, limit, nextPageToken List tasks in Wrike with optional filters.
wrike.wrike_add_comment Write task_id, text Add a comment to a Wrike task.
wrike.wrike_get_project Read id Get detailed information about a Wrike project.
wrike.wrike_list_projects Read status, limit, nextPageToken List projects in Wrike with optional filters.
wrike.wrike_create_folder Write title, parent_id, description Create a new folder in Wrike.
wrike.wrike_get_folder Read folder_id Get detailed information about a Wrike folder.
wrike.wrike_list_folders Read limit, nextPageToken List folders in Wrike with optional filters.
wrike.wrike_get_space Read space_id Get detailed information about a Wrike space.
wrike.wrike_list_spaces Read limit List spaces in Wrike.
wrike.wrike_list_contacts Read limit List contacts in Wrike.
wrike.wrike_get_current_user Read none Get the currently authenticated Wrike user.

Automation Notes

Related Wrike CLI Pages