List Automations (Platform MCP)

Lists all automations on a specific monday.com board, including their IDs, titles, active state, and configuration, using the Platform MCP.

Use this tool to list all automations on a specific monday.com board, including their IDs, titles, active state, and configuration. When a user refers to an automation by name, call this tool first to resolve its ID before using manage_automations.

📘

Automations vs. workflows. Automations are per-board trigger/action rules ("when X happens, do Y" on a single board). Workflows are standalone, workspace-level objects — see create_workflow. They are different products.

🚧

Some legacy automations may not appear in the results. Mention this if a user asks about a missing automation.

Parameters

ParameterTypeRequiredDescription
boardIdstringYesThe numeric board ID as a string.
limitnumberNoMaximum number of automations to return (1–100). Default: 100.
cursorstringNoPagination cursor from a previous response. Pass it to retrieve the next page of automations.

Example

List the automations on a board:

{
  "boardId": "1234567890",
  "limit": 50
}

The tool returns the matching automations (with id, title, is_active, and configuration) plus a pagination object containing nextCursor and hasMore.


Programmatic equivalent

This tool queries board_automations on the monday.com API. Automations are primarily managed through the monday.com interface or via the MCP.