Install
openclaw skills install monday-opsAgentic framework for operating monday.com workspaces via the Monday MCP connector. Use this skill whenever the user wants to interact with monday.com — crea...
openclaw skills install monday-opsThis skill enables Claude to operate monday.com workspaces as a capable project management agent. It covers the full lifecycle: discovering workspace structure, creating/modifying boards and items, managing columns and groups, posting updates, moving items through stages, and orchestrating multi-step workflows.
The user must have the monday.com MCP connector enabled in their Claude session. The hosted MCP endpoint is https://mcp.monday.com/mcp. If the connector is not connected, suggest the user enable it via the connectors menu.
The Monday MCP provides these tool categories. Before calling any tool, use tool_search with a relevant query (e.g., "monday create item") to load the exact parameter schema — never guess parameter names.
| Tool | Purpose |
|---|---|
create_item | Create a new item on a board with column values |
delete_item | Permanently delete an item |
get_board_items_by_name | Search items by board ID and search term |
create_update | Post a comment/update on an item |
change_item_column_values | Modify column values of an existing item |
move_item_to_group | Move an item to a different group |
| Tool | Purpose |
|---|---|
create_board | Create a new board with columns |
get_board_schema | Retrieve column and group structure |
create_group | Add a new group to a board |
create_column | Add a column to a board |
delete_column | Remove a column from a board |
| Tool | Purpose |
|---|---|
list_users_and_teams | Look up users or teams by name/ID |
| Tool | Purpose |
|---|---|
create_form | Create a new monday.com form |
get_form | Retrieve a form by token |
| Tool | Purpose |
|---|---|
all_monday_api | Execute arbitrary GraphQL queries/mutations |
get_graphql_schema | Fetch the full monday.com GraphQL schema |
get_type_details | Get detailed info about a GraphQL type |
Every monday.com task follows this three-phase pattern. Skipping discovery is the #1 cause of failed operations.
Before creating or modifying anything, understand the workspace structure.
For existing boards:
get_board_schema with the board ID to learn column IDs, column types, and group IDs.status, date4, text0) — they are NOT the same as display names.new_group, topics) are required for creating items in specific groups.For user lookups:
list_users_and_teams to find user IDs before assigning items to people.Why this matters: monday.com's API uses internal IDs everywhere. The column your user calls "Priority" might have the ID status_1 or color. Trying to set a column by display name will fail silently or error. Always discover first.
After discovery, map the user's intent to specific API calls:
Call the MCP tools in the planned order. After each call:
Column values must be passed as JSON strings matching monday.com's expected format. This is the trickiest part of the API. Read references/column-formats.md for the full reference before setting column values.
Critical rules:
label (the display text) — e.g., {"label": "Done"}{"date": "2026-05-15"}{"personsAndTeams": [{"id": 12345, "kind": "person"}]}{"number": 42}{"text": "Hello world"}{"ids": [1, 3]}When in doubt, call get_board_schema and examine the column's settings_str to understand its allowed values.
1. create_board → get the new board_id
2. create_group (repeat for each stage: "To Do", "In Progress", "Done")
3. create_column (repeat for: status, date, people, priority, etc.)
4. create_item (repeat for each initial task)
1. get_board_schema → learn column IDs
2. get_board_items_by_name (with empty or broad search) → get all items
3. Aggregate by group and status column
4. Present a summary table with counts per status per group
1. get_board_items_by_name → find items in the intake group
2. For each item, analyze the title/description
3. change_item_column_values → set priority, assignee, due date
4. move_item_to_group → route to the appropriate team group
5. create_update → post a triage note on each item
1. get_board_schema → learn the status column ID
2. get_board_items_by_name → find matching items
3. For each item: change_item_column_values → update status
4. Summarize what was changed
"Column not found" — You used a display name instead of the internal column ID. Re-run get_board_schema and use the id field.
"Invalid column value" — The JSON format for the column value is wrong. Check the column type and refer to the Column Value Formats reference.
"Item not found" — The item ID doesn't exist or the user doesn't have access. Verify the ID and permissions.
"Unauthorized" — The MCP token doesn't have permission for this operation. The user may need to re-authenticate or check their monday.com permissions.
Rate limiting — If you get rate limit errors, add a brief pause between calls. monday.com's API has per-minute limits.
create_update explaining the change — this creates an audit trail.https://{workspace}.monday.com/boards/{board_id}.When creating items with due dates, offer to also create Google Calendar events for deadlines using the Google Calendar MCP tools.
After triaging or creating items, offer to draft email notifications to assignees via Gmail MCP tools.
After meetings, use Fireflies transcripts to extract action items and create them as monday.com items automatically.
references/column-formats.md — Complete column value format reference for all column types. Read this before setting any column values.references/workflows.md — Detailed step-by-step workflow templates for common scenarios.