> ## Documentation Index
> Fetch the complete documentation index at: https://docs.atako.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# monday.com

> Connect monday.com to your Atako agents — 19 read and 16 write actions.

Let your agents work in your monday.com account — manage boards, groups, items, subitems and updates on your behalf.

## Connection

* **Authentication**: API key (Personal API token).

<Note>
  monday.com → click your profile picture (top right) → Developers → My access tokens → API token → Show, then copy the token. Personal tokens carry your own permissions — no extra scopes to pick. (Admins can also use Administration → Connections → Personal API token.)

  See [monday.com's documentation](https://developer.monday.com/api-reference/docs/authentication).
</Note>

## Read actions (19)

| Action            | Description                                                       |
| ----------------- | ----------------------------------------------------------------- |
| `get_board`       | Fetch a single board by ID, including its groups and columns.     |
| `get_column`      | Fetch a single column of a board by its ID.                       |
| `get_group`       | Fetch a single group of a board by its ID.                        |
| `get_item`        | Fetch a single item by ID with all its column values.             |
| `get_me`          | Fetch the profile of the connected user (token owner).            |
| `get_subitem`     | Fetch a single subitem by its ID (subitems are items).            |
| `get_team`        | Fetch a single team by ID, including its members.                 |
| `get_update`      | Fetch a single update (comment) by its ID.                        |
| `get_user`        | Fetch a single user by ID.                                        |
| `get_workspace`   | Fetch a single workspace by ID.                                   |
| `list_boards`     | List boards, optionally filtered by workspace, state or kind.     |
| `list_columns`    | List the columns of a board with their types and settings.        |
| `list_groups`     | List the groups (sections) of a board.                            |
| `list_items`      | List items of a board (cursor-paginated).                         |
| `list_subitems`   | List the subitems of an item.                                     |
| `list_teams`      | List all teams of the account.                                    |
| `list_updates`    | List updates (comments), across the account or for a single item. |
| `list_users`      | List account users, optionally filtered by name or email.         |
| `list_workspaces` | List workspaces of the account.                                   |

## Write actions (16)

| Action               | Description                                                                       |
| -------------------- | --------------------------------------------------------------------------------- |
| `archive_board`      | Archive a board.                                                                  |
| `archive_group`      | Archive a group and all the items in it.                                          |
| `archive_item`       | Archive an item.                                                                  |
| `create_board`       | Create a new board.                                                               |
| `create_column`      | Add a new column to a board.                                                      |
| `create_group`       | Create a new group on a board.                                                    |
| `create_item`        | Create an item on a board, optionally in a specific group and with column values. |
| `create_subitem`     | Create a subitem under a parent item.                                             |
| `create_update`      | Post an update (comment) on an item, optionally as a reply.                       |
| `delete_board`       | Permanently delete a board.                                                       |
| `delete_column`      | Delete a column from a board.                                                     |
| `delete_group`       | Delete a group and all the items in it.                                           |
| `delete_item`        | Permanently delete an item.                                                       |
| `delete_update`      | Delete an update (comment).                                                       |
| `move_item_to_group` | Move an item to another group of its board.                                       |
| `update_item`        | Update one or more column values of an item.                                      |

## Permissions

Every action above must be explicitly granted to an agent before it can be used. See [Permissions](/integrations/permissions) for the grant model and [Security](/integrations/security) for how credentials are protected.
