Overview
Work operating system that unifies project management, task tracking, and team collaboration. Through Langdock’s integration, you can access and manage monday.com directly from your conversations.Authentication: API Key
Category: Productivity & Collaboration
Availability: All workspace plans
Available Actions
Get boards
monday.com.get_boards
Returns the available boards and their information
Requires Confirmation: No
Parameters: None
Output: Returns the operation result
Get items
monday.com.get_items
Retrieves items available on a specific board
Requires Confirmation: No
Parameters:
boardId(TEXT, Required): The unique identifier for the Monday.com board from which to retrieve itemscolumnIds(TEXT, Optional): An array of column IDs that specifies which columns’ values should be retrieved for each itemitemLimit(NUMBER, Optional): An integer specifying the maximum number of items to retrieve from the board
Get item updates
monday.com.get_item_updates
Retrieves updates (comments) for a specific item
Requires Confirmation: No
Parameters:
itemId(TEXT, Required): The unique identifier for the itemlimit(NUMBER, Optional): Maximum number of updates to retrieve (default: 10)
Create column
monday.com.create_column
Creates a new column on a specific board
Requires Confirmation: Yes
Parameters:
boardId(TEXT, Required): The unique identifier for the Monday.com boardtitle(TEXT, Required): The title of the new columncolumnType(TEXT, Required): The type of column to create (e.g., text, number, status)columnSettings(MULTI_LINE_TEXT, Optional): JSON formatted settings for the column (optional)
Create subitem
monday.com.create_subitem
Creates a new subitem under a parent item
Requires Confirmation: Yes
Parameters:
parentItemId(TEXT, Required): The unique identifier of the parent itemitemName(TEXT, Required): The name of the new subitemcolumnValues(TEXT, Optional): JSON formatted column values for the new subitem (optional)
Create task
monday.com.create_task
Creates a new item in a Monday.com board with specified column values
Requires Confirmation: Yes
Parameters:
boardId(NUMBER, Required): The unique identifier of the board where the item will be createditemName(TEXT, Required): The name of the new itemcolumnValues(MULTI_LINE_TEXT, Required): JSON formatted column values for the new item (e.g., {“status”: “Done”, “date”: “2023-04-15”})groupId(NUMBER, Optional): Optional group ID to place the item in a specific group
Add update to item
monday.com.add_update_to_item
Adds an update (comment) to a specific item
Requires Confirmation: Yes
Parameters:
itemId(TEXT, Required): The unique identifier for the itemupdateText(MULTI_LINE_TEXT, Required): The text content of the update/comment
Update item
monday.com.update_item
Updates a specific item in a board in Monday.com
Requires Confirmation: Yes
Parameters:
itemId(TEXT, Required): The unique identifier for the item (task) to be updatedboardId(TEXT, Required): The unique identifier of the board containing the itemvalue(TEXT, Required): The new value for the columncolumnId(TEXT, Required): The ID of the column to update (e.g., “status”, “text”, “date”)
Update item column values
monday.com.update_item_column_values
Updates column values for an existing item in Monday.com
Requires Confirmation: Yes
Parameters:
boardId(TEXT, Required): The unique identifier of the board containing the itemitemId(TEXT, Required): The unique identifier of the item to updatecolumnId(TEXT, Required): The ID of the column to update (e.g., “status”, “text”, “date”)columnValue(TEXT, Required): The new value for the column
Move item to group
monday.com.move_item_to_group
Moves an item to a different group within the same board
Requires Confirmation: Yes
Parameters:
boardId(TEXT, Required): The unique identifier for the Monday.com boarditemId(TEXT, Required): The unique identifier for the item to movegroupId(TEXT, Required): The identifier of the destination group