Skip to main content

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 items
  • columnIds (TEXT, Optional): An array of column IDs that specifies which columns’ values should be retrieved for each item
  • itemLimit (NUMBER, Optional): An integer specifying the maximum number of items to retrieve from the board
Output: Returns the operation result

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 item
  • limit (NUMBER, Optional): Maximum number of updates to retrieve (default: 10)
Output: Returns the operation result

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 board
  • title (TEXT, Required): The title of the new column
  • columnType (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)
Output: Returns the operation result

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 item
  • itemName (TEXT, Required): The name of the new subitem
  • columnValues (TEXT, Optional): JSON formatted column values for the new subitem (optional)
Output: Returns the operation result

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 created
  • itemName (TEXT, Required): The name of the new item
  • columnValues (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
Output: Returns the operation result

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 item
  • updateText (MULTI_LINE_TEXT, Required): The text content of the update/comment
Output: Returns the operation result

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 updated
  • boardId (TEXT, Required): The unique identifier of the board containing the item
  • value (TEXT, Required): The new value for the column
  • columnId (TEXT, Required): The ID of the column to update (e.g., “status”, “text”, “date”)
Output: Returns the operation result

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 item
  • itemId (TEXT, Required): The unique identifier of the item to update
  • columnId (TEXT, Required): The ID of the column to update (e.g., “status”, “text”, “date”)
  • columnValue (TEXT, Required): The new value for the column
Output: Returns the operation result

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 board
  • itemId (TEXT, Required): The unique identifier for the item to move
  • groupId (TEXT, Required): The identifier of the destination group
Output: Returns the operation result