Monday MCP integration for AI agents.
Connect AI agents to Monday through 67 structured actions, including find items by column values, add teams to board, archive board, and activate form. Revie…
- ACTION CONTRACTS
- 67
- AUTHENTICATION
- OAuth 2.0 + API key
- SOURCE STATUS
- Provider-backed
CATALOG SOURCE REVIEWED AUGUST 23, 2026 / ACTION NAMES AND SCHEMAS DERIVED FROM WORKING MACHINES PROVIDER SOURCE
CAPABILITY PROFILE
What the Monday integration exposes
The Monday Agent App exposes 67 provider-backed actions for productivity work. Its current contract lets an authorized agent find monday items on a board by matching explicit column values, add teams to a monday board, and archive a monday board. These operations are called through Working Machines as typed capabilities rather than through browser navigation or copied UI steps.
A connection uses OAuth 2.0 and API key. Before execution, the agent can inspect the selected action, its required fields, declared scopes, and expected output contract. Provider credentials remain inside the Working Machines runtime; the calling agent receives the capability and its structured result, not the underlying secret.
For reliable operation, start with the narrowest action that satisfies the task, resolve stable provider identifiers before changing state, and validate the returned object or status after execution. Availability still depends on the connected Monday account, granted provider permissions, workspace policy, region, plan, and upstream API behavior.
VERIFIED ACTION SAMPLE
Real Monday capabilities.
Showing 12 of 67 actions. Risk labels are conservative signals based on operation names, not substitutes for provider documentation or runtime policy.
find_items_by_column_valuesREADFind Monday items on a board by matching explicit column values.
INPUTS: board_id / column_id / column_values / limit
add_teams_to_boardWRITEAdd teams to a Monday board.
INPUTS: board_id / kind / team_ids
archive_boardHIGH IMPACTArchive a Monday board.
INPUTS: board_id
activate_formREVIEWActivate a Monday Workform so it starts accepting submissions.
INPUTS: formToken
add_users_to_boardWRITEAdd users to a Monday board.
INPUTS: board_id / kind / user_ids
archive_itemHIGH IMPACTArchive a Monday item.
INPUTS: item_id
assign_department_membersWRITEAssign users to a Monday department on an enterprise account.
INPUTS: department_id / user_ids
change_item_positionREVIEWChange a Monday item's position on the same board.
INPUTS: item_id / group_id / group_top / relative_to / position_relative_method
change_multiple_column_valuesREVIEWChange multiple Monday column values in one mutation using the official JSON payload shape.
INPUTS: board_id / item_id / column_values / create_labels_if_missing
change_simple_column_valueREVIEWChange a Monday column value using the official simple string mutation.
INPUTS: board_id / item_id / column_id / value / create_labels_if_missing
clear_users_departmentREVIEWClear department assignments from Monday users on an enterprise account.
INPUTS: user_ids
create_boardWRITECreate a Monday board with the official create_board mutation.
INPUTS: board_name / board_kind / workspace_id / empty
INPUT CONTRACTS
Know what the action needs before it runs.
find_items_by_column_values
board_idREQUIRED- A Monday identifier.
column_idREQUIRED- The column identifier.
column_valuesREQUIRED- A non-empty list of strings.
limitOPTIONAL- Page size.
add_teams_to_board
board_idREQUIRED- A Monday identifier.
kindOPTIONAL- Membership role.
team_idsREQUIRED- A non-empty list of Monday identifiers.
archive_board
board_idREQUIRED- A Monday identifier.
activate_form
formTokenREQUIRED- The unique form token.
PROVIDER-SPECIFIC WORKFLOWS
Jobs this Agent App can support
Inspect Find Items By Column Values
Find Monday items on a board by matching explicit column values. Use this as a bounded discovery step, retain the returned identifier, and avoid expanding the read beyond the task's stated scope.
find_items_by_column_valuesControl Add Teams To Board
Add teams to a Monday board. Resolve the target first, present material changes for confirmation, and make retries idempotent where the provider supports it.
add_teams_to_boardVerify with Add Teams To Board
Add teams to a Monday board. Compare the returned provider state with the intended outcome and preserve stable IDs or canonical links in the run record.
add_teams_to_boardSAFETY BOUNDARY
Operate Monday with explicit limits
- Authorize Monday with OAuth 2.0 and API key and grant only the provider access required by the selected actions.
- 38 actions are change-capable by name. Confirm the target identity and material parameters before allowing a write.
- Treat `archive_board`, `archive_item`, and `delete_board` as high-impact operations and require an explicit approval boundary.
- The sampled contract declares provider scopes including `forms:write`, `boards:write`, `departments:write`, and `docs:write`; verify the complete action contract before execution.
- After a call, inspect the structured result and execution record before reporting that the Monday task completed successfully.
CONNECTION MODEL
OAuth 2.0 + API key
Monday personal V2 API token sent in the Authorization header with an explicit API-Version header. Find it in the monday Developer Center API token tab: https://developer.monday.com/api-reference/docs/authentication.
Working Machines stores provider credentials behind the execution boundary. An agent can use an authorized connection identity, but catalog discovery alone does not reveal OAuth tokens, API keys, or provider secrets.
- READ SIGNALS
- 22
- WRITE SIGNALS
- 25
- HIGH IMPACT
- 13
- REVIEW SIGNALS
- 7
EVIDENCE AND AVAILABILITY
Provider reference
Action names, input fields, authentication types, and counts on this page are generated from the Working Machines provider catalog. Provider behavior, quotas, object semantics, account eligibility, and regional availability remain governed by Monday.