Search
searchSearch monday.com for boards, documents, folders, workspaces, updates, or items using a search term and type. Returns IDs with object type prefixes.
Instructions
Search within monday.com platform. Can search for boards, documents, folders, workspaces, updates, and items. For searching/listing specific users and teams, use list_users_and_teams tool. For account-level info (plan, member count, products), use get_user_context tool. For groups, use get_board_info tool. ITEMS search requires a searchTerm and only returns id, title, and url. WORKSPACES search requires a searchTerm and only returns id, title, and description. UPDATES search requires a searchTerm and returns id, title (the update body), itemId, boardId, and creatorId. Optionally scope it with boardIds and/or creatorIds. IMPORTANT: ids returned by this tool are prefixed with the type of the object (e.g doc-123, board-456, folder-789, workspace-101, update-303, item-321). When passing the ids to other tools, you need to remove the prefix and just pass the number.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| searchTerm | No | The search term to use for the search. | |
| searchType | Yes | The type of search to perform. | |
| limit | No | The number of items to get. The max and default value is 20. | |
| page | No | The page number to get. The default value is 1. | |
| workspaceIds | No | The ids of the workspaces to search in. [IMPORTANT] Only pass this param if user explicitly asked to search within specific workspaces. | |
| boardIds | No | The ids of the boards to scope the search to. [IMPORTANT] Only applies to UPDATES search, and only pass it if the user explicitly asked to search within specific boards. | |
| creatorIds | No | The ids of the users whose updates to search. [IMPORTANT] Only applies to UPDATES search, and only pass it if the user explicitly asked to search updates by specific authors. |