Use the Monday.com CLI from KosmoKrator to call Monday.com tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
Monday.com can be configured headlessly with `kosmokrator integrations:configure monday`.
# 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 monday --set api_token="$MONDAY_API_TOKEN" --enable --read allow --write ask --jsonkosmokrator integrations:doctor monday --jsonkosmokrator integrations:status --json
Credentials
Authentication type: API tokenapi_token. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
api_token
MONDAY_API_TOKEN
Secret secret
yes
API Token
Call Monday.com Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to Monday.com.
monday.monday_list_boards
Read read
List Monday.com boards the authenticated user has access to.
Optionally filter by workspace. Returns board name, kind, workspace,
owner, and item count. Use monday_list_workspaces to discover workspace IDs.
Get a single Monday.com board by ID. Returns full board details
including all columns (with types) and groups. Use monday_list_boards
to discover board IDs.
List items on a Monday.com board with pagination. Returns item name,
state, group, creator, and timestamps. Use monday_list_boards or
monday_get_board to discover board IDs.
Create a new item on a Monday.com board. Requires a board ID and item name.
Optionally set a group and initial column values. Use monday_get_board to
discover group IDs and column IDs.
List Monday.com workspaces the authenticated user has access to.
Returns workspace name, kind, description, and subscriber counts.
Use workspace IDs to filter boards in monday_list_boards.
Use these parameter tables when building CLI payloads without calling integrations:schema first.
monday.monday_list_boards
List Monday.com boards the authenticated user has access to.
Optionally filter by workspace. Returns board name, kind, workspace,
owner, and item count. Use monday_list_workspaces to discover workspace IDs.
Get a single Monday.com board by ID. Returns full board details
including all columns (with types) and groups. Use monday_list_boards
to discover board IDs.
List items on a Monday.com board with pagination. Returns item name,
state, group, creator, and timestamps. Use monday_list_boards or
monday_get_board to discover board IDs.
Create a new item on a Monday.com board. Requires a board ID and item name.
Optionally set a group and initial column values. Use monday_get_board to
discover group IDs and column IDs.
Column values to set, keyed by column ID. Values depend on column type.
monday.monday_list_workspaces
List Monday.com workspaces the authenticated user has access to.
Returns workspace name, kind, description, and subscriber counts.
Use workspace IDs to filter boards in monday_list_boards.
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.