Retrieve all columns (fields) from a specific board. Use this to understand the data structure and column IDs for creating items with mapped values.Parameters:
Parameter
Type
Required
Default
Description
boardId
string
Yes
—
Board ID to get columns from. Tip: Use monday_get_boards to find available boards.
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "boardId": { "type": "string", "description": "Board ID to get columns from. Tip: Use monday_get_boards to find available boards." } }, "required": [ "PCID", "boardId" ]}
Create a new group for organizing items within a specified boardParameters:
Parameter
Type
Required
Default
Description
boardId
string
Yes
—
Board ID where the group will be created. Tip: Use monday_get_boards to find available boards.
groupName
string
Yes
—
Name for the new group
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "boardId": { "type": "string", "description": "Board ID where the group will be created. Tip: Use monday_get_boards to find available boards." }, "groupName": { "type": "string", "description": "Name for the new group" } }, "required": [ "PCID", "boardId", "groupName" ]}
Create a new item (row) in a specified group on a board. Use column values to map data to the appropriate columns.Parameters:
Parameter
Type
Required
Default
Description
boardId
string
Yes
—
Board ID where the item will be created. Tip: Use monday_get_boards to find available boards.
groupId
string
Yes
—
Group ID where the item will be placed. Tip: Use monday_get_groups to find available groups.
itemName
string
Yes
—
Name for the new item
columnValues
object
No
—
JSON object with column values. Keys are column IDs (from monday_get_columns), values are the data to fill. Example: {“status”: {“label”: “Done”}, “date”: {“date”: “2024-01-15”}}
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "boardId": { "type": "string", "description": "Board ID where the item will be created. Tip: Use monday_get_boards to find available boards." }, "groupId": { "type": "string", "description": "Group ID where the item will be placed. Tip: Use monday_get_groups to find available groups." }, "itemName": { "type": "string", "description": "Name for the new item" }, "columnValues": { "type": "object", "additionalProperties": true, "description": "JSON object with column values. Keys are column IDs (from monday_get_columns), values are the data to fill. Example: {\"status\": {\"label\": \"Done\"}, \"date\": {\"date\": \"2024-01-15\"}}" } }, "required": [ "PCID", "boardId", "groupId", "itemName" ]}
Update an existing item by changing its column values. Use this to modify data in specific columns.Parameters:
Parameter
Type
Required
Default
Description
boardId
string
Yes
—
Board ID where the item exists. Tip: Use monday_get_boards to find available boards.
itemId
string
Yes
—
ID of the item to update
columnValues
object
Yes
—
JSON object with column values to update. Keys are column IDs (from monday_get_columns), values are the new data. Example: {“status”: {“label”: “Done”}, “date”: {“date”: “2024-01-15”}}
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "boardId": { "type": "string", "description": "Board ID where the item exists. Tip: Use monday_get_boards to find available boards." }, "itemId": { "type": "string", "description": "ID of the item to update" }, "columnValues": { "type": "object", "additionalProperties": true, "description": "JSON object with column values to update. Keys are column IDs (from monday_get_columns), values are the new data. Example: {\"status\": {\"label\": \"Done\"}, \"date\": {\"date\": \"2024-01-15\"}}" } }, "required": [ "PCID", "boardId", "itemId", "columnValues" ]}
Search for items in a board by column value. Useful for finding specific items before updating or deleting them.Parameters:
Parameter
Type
Required
Default
Description
boardId
string
Yes
—
Board ID to search within. Tip: Use monday_get_boards to find available boards.
columnId
string
Yes
—
Column ID to search in. Tip: Use monday_get_columns to find available columns.
columnValue
string
Yes
—
Value to search for in the column
limit
number
No
—
Maximum number of items to retrieve (default: 25)
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID" }, "boardId": { "type": "string", "description": "Board ID to search within. Tip: Use monday_get_boards to find available boards." }, "columnId": { "type": "string", "description": "Column ID to search in. Tip: Use monday_get_columns to find available columns." }, "columnValue": { "type": "string", "description": "Value to search for in the column" }, "limit": { "type": "number", "description": "Maximum number of items to retrieve (default: 25)" } }, "required": [ "PCID", "boardId", "columnId", "columnValue" ]}