{
  "schemaVersion": "1.0",
  "item": {
    "slug": "monday",
    "name": "Monday.com",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/byungkyu/monday",
    "canonicalUrl": "https://clawhub.ai/byungkyu/monday",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/monday",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=monday",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/monday"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/monday",
    "agentPageUrl": "https://openagent3.xyz/skills/monday/agent",
    "manifestUrl": "https://openagent3.xyz/skills/monday/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/monday/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Monday.com",
        "body": "Access the Monday.com API with managed OAuth authentication. Manage boards, items, columns, groups, users, and workspaces using GraphQL."
      },
      {
        "title": "Quick Start",
        "body": "# Get current user\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'query': '{ me { id name email } }'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/monday/v2', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/monday/v2\n\nAll requests use POST to the GraphQL endpoint. The gateway proxies requests to api.monday.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Monday.com OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=monday&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'monday'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"ca93f2c5-5126-4360-b293-4f05f7bb6c8c\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-05T20:10:47.585047Z\",\n    \"last_updated_time\": \"2026-02-05T20:11:12.357011Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"monday\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Monday.com connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'query': '{ me { id name } }'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/monday/v2', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nreq.add_header('Maton-Connection', 'ca93f2c5-5126-4360-b293-4f05f7bb6c8c')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "API Reference",
        "body": "Monday.com uses a GraphQL API. All operations are sent as POST requests with a JSON body containing the query field."
      },
      {
        "title": "Current User (me)",
        "body": "POST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ me { id name email } }\"}\n\nResponse:\n\n{\n  \"data\": {\n    \"me\": {\n      \"id\": \"72989582\",\n      \"name\": \"Chris\",\n      \"email\": \"chris.kim.2332@gmail.com\"\n    }\n  }\n}"
      },
      {
        "title": "Users",
        "body": "POST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ users(limit: 20) { id name email } }\"}"
      },
      {
        "title": "Workspaces",
        "body": "POST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ workspaces(limit: 10) { id name kind } }\"}\n\nResponse:\n\n{\n  \"data\": {\n    \"workspaces\": [\n      { \"id\": \"10136488\", \"name\": \"Main workspace\", \"kind\": \"open\" }\n    ]\n  }\n}"
      },
      {
        "title": "Boards",
        "body": "List Boards\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ boards(limit: 10) { id name state board_kind workspace { id name } } }\"}\n\nResponse:\n\n{\n  \"data\": {\n    \"boards\": [\n      {\n        \"id\": \"8614733398\",\n        \"name\": \"Welcome to your developer account\",\n        \"state\": \"active\",\n        \"board_kind\": \"public\",\n        \"workspace\": { \"id\": \"10136488\", \"name\": \"Main workspace\" }\n      }\n    ]\n  }\n}\n\nGet Board with Columns, Groups, and Items\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ boards(ids: [BOARD_ID]) { id name columns { id title type } groups { id title } items_page(limit: 20) { cursor items { id name state } } } }\"}\n\nCreate Board\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_board(board_name: \\\"New Board\\\", board_kind: public) { id name } }\"}\n\nResponse:\n\n{\n  \"data\": {\n    \"create_board\": {\n      \"id\": \"18398921201\",\n      \"name\": \"New Board\"\n    }\n  }\n}\n\nUpdate Board\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { update_board(board_id: BOARD_ID, board_attribute: description, new_value: \\\"Board description\\\") }\"}\n\nDelete Board\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { delete_board(board_id: BOARD_ID) { id } }\"}"
      },
      {
        "title": "Items",
        "body": "Get Items by ID\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ items(ids: [ITEM_ID]) { id name created_at updated_at state board { id name } group { id title } column_values { id text value } } }\"}\n\nResponse:\n\n{\n  \"data\": {\n    \"items\": [\n      {\n        \"id\": \"11200791874\",\n        \"name\": \"Test item\",\n        \"created_at\": \"2026-02-05T20:12:42Z\",\n        \"updated_at\": \"2026-02-05T20:12:42Z\",\n        \"state\": \"active\",\n        \"board\": { \"id\": \"8614733398\", \"name\": \"Welcome to your developer account\" },\n        \"group\": { \"id\": \"topics\", \"title\": \"Group Title\" }\n      }\n    ]\n  }\n}\n\nCreate Item\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_item(board_id: BOARD_ID, group_id: \\\"GROUP_ID\\\", item_name: \\\"New item\\\") { id name } }\"}\n\nCreate Item with Column Values\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_item(board_id: BOARD_ID, group_id: \\\"GROUP_ID\\\", item_name: \\\"New task\\\", column_values: \\\"{\\\\\\\"status\\\\\\\": {\\\\\\\"label\\\\\\\": \\\\\\\"Working on it\\\\\\\"}}\\\") { id name column_values { id text } } }\"}\n\nUpdate Item Name\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { change_simple_column_value(board_id: BOARD_ID, item_id: ITEM_ID, column_id: \\\"name\\\", value: \\\"Updated name\\\") { id name } }\"}\n\nUpdate Column Value\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { change_column_value(board_id: BOARD_ID, item_id: ITEM_ID, column_id: \\\"status\\\", value: \\\"{\\\\\\\"label\\\\\\\": \\\\\\\"Done\\\\\\\"}\\\") { id name } }\"}\n\nDelete Item\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { delete_item(item_id: ITEM_ID) { id } }\"}"
      },
      {
        "title": "Columns",
        "body": "Create Column\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_column(board_id: BOARD_ID, title: \\\"Status\\\", column_type: status) { id title type } }\"}\n\nResponse:\n\n{\n  \"data\": {\n    \"create_column\": {\n      \"id\": \"color_mm09e48w\",\n      \"title\": \"Status\",\n      \"type\": \"status\"\n    }\n  }\n}\n\nColumn Types\n\nCommon column types: status, text, numbers, date, people, dropdown, checkbox, email, phone, link, timeline, tags, rating"
      },
      {
        "title": "Groups",
        "body": "Create Group\n\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_group(board_id: BOARD_ID, group_name: \\\"New Group\\\") { id title } }\"}\n\nResponse:\n\n{\n  \"data\": {\n    \"create_group\": {\n      \"id\": \"group_mm0939df\",\n      \"title\": \"New Group\"\n    }\n  }\n}"
      },
      {
        "title": "Pagination",
        "body": "Monday.com uses cursor-based pagination for items with items_page and next_items_page.\n\n# First page\nPOST /monday/v2\n{\"query\": \"{ boards(ids: [BOARD_ID]) { items_page(limit: 50) { cursor items { id name } } } }\"}\n\n# Next page using cursor\nPOST /monday/v2\n{\"query\": \"{ next_items_page(cursor: \\\"CURSOR_VALUE\\\", limit: 50) { cursor items { id name } } }\"}\n\nResponse includes cursor when more items exist (null when no more pages):\n\n{\n  \"data\": {\n    \"boards\": [{\n      \"items_page\": {\n        \"cursor\": \"MSw5NzI4...\",\n        \"items\": [...]\n      }\n    }]\n  }\n}"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch('https://gateway.maton.ai/monday/v2', {\n  method: 'POST',\n  headers: {\n    'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n    'Content-Type': 'application/json'\n  },\n  body: JSON.stringify({\n    query: `{ boards(limit: 10) { id name items_page(limit: 20) { items { id name } } } }`\n  })\n});\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.post(\n    'https://gateway.maton.ai/monday/v2',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'query': '{ boards(limit: 10) { id name items_page(limit: 20) { items { id name } } } }'\n    }\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "Monday.com uses GraphQL exclusively (no REST API)\nBoard IDs, item IDs, and user IDs are numeric strings\nColumn IDs are alphanumeric strings (e.g., color_mm09e48w)\nGroup IDs are alphanumeric strings (e.g., group_mm0939df, topics)\nColumn values must be passed as JSON strings when creating/updating items\nThe account query may require additional OAuth scopes. If you receive a scope error, contact Maton support at support@maton.ai with the specific operations/APIs you need and your use-case\nBoard kinds: public, private, share\nBoard states: active, archived, deleted, all\nEach cursor is valid for 60 minutes after the initial request\nDefault limit is 25, maximum is 100 for most queries"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Monday.com connection or GraphQL validation error401Invalid or missing Maton API key403Insufficient OAuth scope for the operation429Rate limited4xx/5xxPassthrough error from Monday.com API\n\nGraphQL errors are returned in the errors array:\n\n{\n  \"data\": {},\n  \"errors\": [\n    {\n      \"message\": \"Unauthorized field or type\",\n      \"path\": [\"account\"],\n      \"extensions\": { \"code\": \"UNAUTHORIZED_FIELD_OR_TYPE\" }\n    }\n  ]\n}"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with monday. For example:\n\nCorrect: https://gateway.maton.ai/monday/v2\nIncorrect: https://gateway.maton.ai/v2"
      },
      {
        "title": "Resources",
        "body": "Monday.com API Basics\nGraphQL Overview\nBoards Reference\nItems Reference\nColumns Reference\nAPI Changelog\nMaton Community\nMaton Support"
      }
    ],
    "body": "Monday.com\n\nAccess the Monday.com API with managed OAuth authentication. Manage boards, items, columns, groups, users, and workspaces using GraphQL.\n\nQuick Start\n# Get current user\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'query': '{ me { id name email } }'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/monday/v2', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/monday/v2\n\n\nAll requests use POST to the GraphQL endpoint. The gateway proxies requests to api.monday.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Monday.com OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=monday&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'monday'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"ca93f2c5-5126-4360-b293-4f05f7bb6c8c\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-05T20:10:47.585047Z\",\n    \"last_updated_time\": \"2026-02-05T20:11:12.357011Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"monday\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Monday.com connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'query': '{ me { id name } }'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/monday/v2', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nreq.add_header('Maton-Connection', 'ca93f2c5-5126-4360-b293-4f05f7bb6c8c')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\n\nMonday.com uses a GraphQL API. All operations are sent as POST requests with a JSON body containing the query field.\n\nCurrent User (me)\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ me { id name email } }\"}\n\n\nResponse:\n\n{\n  \"data\": {\n    \"me\": {\n      \"id\": \"72989582\",\n      \"name\": \"Chris\",\n      \"email\": \"chris.kim.2332@gmail.com\"\n    }\n  }\n}\n\nUsers\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ users(limit: 20) { id name email } }\"}\n\nWorkspaces\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ workspaces(limit: 10) { id name kind } }\"}\n\n\nResponse:\n\n{\n  \"data\": {\n    \"workspaces\": [\n      { \"id\": \"10136488\", \"name\": \"Main workspace\", \"kind\": \"open\" }\n    ]\n  }\n}\n\nBoards\nList Boards\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ boards(limit: 10) { id name state board_kind workspace { id name } } }\"}\n\n\nResponse:\n\n{\n  \"data\": {\n    \"boards\": [\n      {\n        \"id\": \"8614733398\",\n        \"name\": \"Welcome to your developer account\",\n        \"state\": \"active\",\n        \"board_kind\": \"public\",\n        \"workspace\": { \"id\": \"10136488\", \"name\": \"Main workspace\" }\n      }\n    ]\n  }\n}\n\nGet Board with Columns, Groups, and Items\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ boards(ids: [BOARD_ID]) { id name columns { id title type } groups { id title } items_page(limit: 20) { cursor items { id name state } } } }\"}\n\nCreate Board\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_board(board_name: \\\"New Board\\\", board_kind: public) { id name } }\"}\n\n\nResponse:\n\n{\n  \"data\": {\n    \"create_board\": {\n      \"id\": \"18398921201\",\n      \"name\": \"New Board\"\n    }\n  }\n}\n\nUpdate Board\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { update_board(board_id: BOARD_ID, board_attribute: description, new_value: \\\"Board description\\\") }\"}\n\nDelete Board\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { delete_board(board_id: BOARD_ID) { id } }\"}\n\nItems\nGet Items by ID\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"{ items(ids: [ITEM_ID]) { id name created_at updated_at state board { id name } group { id title } column_values { id text value } } }\"}\n\n\nResponse:\n\n{\n  \"data\": {\n    \"items\": [\n      {\n        \"id\": \"11200791874\",\n        \"name\": \"Test item\",\n        \"created_at\": \"2026-02-05T20:12:42Z\",\n        \"updated_at\": \"2026-02-05T20:12:42Z\",\n        \"state\": \"active\",\n        \"board\": { \"id\": \"8614733398\", \"name\": \"Welcome to your developer account\" },\n        \"group\": { \"id\": \"topics\", \"title\": \"Group Title\" }\n      }\n    ]\n  }\n}\n\nCreate Item\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_item(board_id: BOARD_ID, group_id: \\\"GROUP_ID\\\", item_name: \\\"New item\\\") { id name } }\"}\n\nCreate Item with Column Values\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_item(board_id: BOARD_ID, group_id: \\\"GROUP_ID\\\", item_name: \\\"New task\\\", column_values: \\\"{\\\\\\\"status\\\\\\\": {\\\\\\\"label\\\\\\\": \\\\\\\"Working on it\\\\\\\"}}\\\") { id name column_values { id text } } }\"}\n\nUpdate Item Name\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { change_simple_column_value(board_id: BOARD_ID, item_id: ITEM_ID, column_id: \\\"name\\\", value: \\\"Updated name\\\") { id name } }\"}\n\nUpdate Column Value\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { change_column_value(board_id: BOARD_ID, item_id: ITEM_ID, column_id: \\\"status\\\", value: \\\"{\\\\\\\"label\\\\\\\": \\\\\\\"Done\\\\\\\"}\\\") { id name } }\"}\n\nDelete Item\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { delete_item(item_id: ITEM_ID) { id } }\"}\n\nColumns\nCreate Column\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_column(board_id: BOARD_ID, title: \\\"Status\\\", column_type: status) { id title type } }\"}\n\n\nResponse:\n\n{\n  \"data\": {\n    \"create_column\": {\n      \"id\": \"color_mm09e48w\",\n      \"title\": \"Status\",\n      \"type\": \"status\"\n    }\n  }\n}\n\nColumn Types\n\nCommon column types: status, text, numbers, date, people, dropdown, checkbox, email, phone, link, timeline, tags, rating\n\nGroups\nCreate Group\nPOST /monday/v2\nContent-Type: application/json\n\n{\"query\": \"mutation { create_group(board_id: BOARD_ID, group_name: \\\"New Group\\\") { id title } }\"}\n\n\nResponse:\n\n{\n  \"data\": {\n    \"create_group\": {\n      \"id\": \"group_mm0939df\",\n      \"title\": \"New Group\"\n    }\n  }\n}\n\nPagination\n\nMonday.com uses cursor-based pagination for items with items_page and next_items_page.\n\n# First page\nPOST /monday/v2\n{\"query\": \"{ boards(ids: [BOARD_ID]) { items_page(limit: 50) { cursor items { id name } } } }\"}\n\n# Next page using cursor\nPOST /monday/v2\n{\"query\": \"{ next_items_page(cursor: \\\"CURSOR_VALUE\\\", limit: 50) { cursor items { id name } } }\"}\n\n\nResponse includes cursor when more items exist (null when no more pages):\n\n{\n  \"data\": {\n    \"boards\": [{\n      \"items_page\": {\n        \"cursor\": \"MSw5NzI4...\",\n        \"items\": [...]\n      }\n    }]\n  }\n}\n\nCode Examples\nJavaScript\nconst response = await fetch('https://gateway.maton.ai/monday/v2', {\n  method: 'POST',\n  headers: {\n    'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n    'Content-Type': 'application/json'\n  },\n  body: JSON.stringify({\n    query: `{ boards(limit: 10) { id name items_page(limit: 20) { items { id name } } } }`\n  })\n});\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.post(\n    'https://gateway.maton.ai/monday/v2',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'query': '{ boards(limit: 10) { id name items_page(limit: 20) { items { id name } } } }'\n    }\n)\ndata = response.json()\n\nNotes\nMonday.com uses GraphQL exclusively (no REST API)\nBoard IDs, item IDs, and user IDs are numeric strings\nColumn IDs are alphanumeric strings (e.g., color_mm09e48w)\nGroup IDs are alphanumeric strings (e.g., group_mm0939df, topics)\nColumn values must be passed as JSON strings when creating/updating items\nThe account query may require additional OAuth scopes. If you receive a scope error, contact Maton support at support@maton.ai with the specific operations/APIs you need and your use-case\nBoard kinds: public, private, share\nBoard states: active, archived, deleted, all\nEach cursor is valid for 60 minutes after the initial request\nDefault limit is 25, maximum is 100 for most queries\nError Handling\nStatus\tMeaning\n400\tMissing Monday.com connection or GraphQL validation error\n401\tInvalid or missing Maton API key\n403\tInsufficient OAuth scope for the operation\n429\tRate limited\n4xx/5xx\tPassthrough error from Monday.com API\n\nGraphQL errors are returned in the errors array:\n\n{\n  \"data\": {},\n  \"errors\": [\n    {\n      \"message\": \"Unauthorized field or type\",\n      \"path\": [\"account\"],\n      \"extensions\": { \"code\": \"UNAUTHORIZED_FIELD_OR_TYPE\" }\n    }\n  ]\n}\n\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with monday. For example:\nCorrect: https://gateway.maton.ai/monday/v2\nIncorrect: https://gateway.maton.ai/v2\nResources\nMonday.com API Basics\nGraphQL Overview\nBoards Reference\nItems Reference\nColumns Reference\nAPI Changelog\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/monday",
    "publisherUrl": "https://clawhub.ai/byungkyu/monday",
    "owner": "byungkyu",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/monday",
    "downloadUrl": "https://openagent3.xyz/downloads/monday",
    "agentUrl": "https://openagent3.xyz/skills/monday/agent",
    "manifestUrl": "https://openagent3.xyz/skills/monday/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/monday/agent.md"
  }
}