{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clickup-api",
    "name": "ClickUp",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/byungkyu/clickup-api",
    "canonicalUrl": "https://clawhub.ai/byungkyu/clickup-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clickup-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clickup-api",
    "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",
      "slug": "clickup-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:08:25.998Z",
      "expiresAt": "2026-05-06T12:08:25.998Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clickup-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clickup-api",
        "contentDisposition": "attachment; filename=\"clickup-api-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clickup-api"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clickup-api"
    },
    "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/clickup-api",
    "agentPageUrl": "https://openagent3.xyz/skills/clickup-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clickup-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clickup-api/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": "ClickUp",
        "body": "Access the ClickUp API with managed OAuth authentication. Manage tasks, lists, folders, spaces, workspaces, users, and webhooks for work management."
      },
      {
        "title": "Quick Start",
        "body": "# List workspaces (teams)\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/clickup/{native-api-path}\n\nReplace {native-api-path} with the actual ClickUp API endpoint path. The gateway proxies requests to api.clickup.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 ClickUp 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=clickup&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': 'clickup'}).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\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"clickup\",\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 ClickUp connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "ClickUp Hierarchy",
        "body": "ClickUp organizes data in a hierarchy:\n\nWorkspace (team) → Space → Folder → List → Task\n\nNote: In the API, Workspaces are referred to as \"teams\"."
      },
      {
        "title": "Workspaces (Teams)",
        "body": "Get Authorized Workspaces\n\nGET /clickup/api/v2/team\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team')\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  \"teams\": [\n    {\n      \"id\": \"1234567\",\n      \"name\": \"Acme Corp\",\n      \"color\": \"#7B68EE\",\n      \"avatar\": null,\n      \"members\": [\n        {\n          \"user\": {\n            \"id\": 123,\n            \"username\": \"Alice Johnson\",\n            \"email\": \"alice@acme.com\"\n          }\n        }\n      ]\n    }\n  ]\n}"
      },
      {
        "title": "Spaces",
        "body": "Get Spaces\n\nGET /clickup/api/v2/team/{team_id}/space\n\nQuery parameters:\n\narchived - Include archived spaces (true/false)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team/1234567/space')\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  \"spaces\": [\n    {\n      \"id\": \"90120001\",\n      \"name\": \"Engineering\",\n      \"private\": false,\n      \"statuses\": [\n        {\"status\": \"to do\", \"type\": \"open\"},\n        {\"status\": \"in progress\", \"type\": \"custom\"},\n        {\"status\": \"done\", \"type\": \"closed\"}\n      ]\n    }\n  ]\n}\n\nGet a Space\n\nGET /clickup/api/v2/space/{space_id}\n\nCreate a Space\n\nPOST /clickup/api/v2/team/{team_id}/space\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'name': 'New Space', 'multiple_assignees': True, 'features': {'due_dates': {'enabled': True}, 'time_tracking': {'enabled': True}}}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team/1234567/space', 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\nUpdate a Space\n\nPUT /clickup/api/v2/space/{space_id}\n\nDelete a Space\n\nDELETE /clickup/api/v2/space/{space_id}"
      },
      {
        "title": "Folders",
        "body": "Get Folders\n\nGET /clickup/api/v2/space/{space_id}/folder\n\nQuery parameters:\n\narchived - Include archived folders (true/false)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/space/90120001/folder')\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  \"folders\": [\n    {\n      \"id\": \"456789\",\n      \"name\": \"Sprint 1\",\n      \"orderindex\": 0,\n      \"hidden\": false,\n      \"space\": {\"id\": \"90120001\", \"name\": \"Engineering\"},\n      \"task_count\": \"12\",\n      \"lists\": []\n    }\n  ]\n}\n\nGet a Folder\n\nGET /clickup/api/v2/folder/{folder_id}\n\nCreate a Folder\n\nPOST /clickup/api/v2/space/{space_id}/folder\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'name': 'New Folder'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/space/90120001/folder', 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\nUpdate a Folder\n\nPUT /clickup/api/v2/folder/{folder_id}\n\nDelete a Folder\n\nDELETE /clickup/api/v2/folder/{folder_id}"
      },
      {
        "title": "Lists",
        "body": "Get Lists\n\nGET /clickup/api/v2/folder/{folder_id}/list\n\nQuery parameters:\n\narchived - Include archived lists (true/false)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/folder/456789/list')\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  \"lists\": [\n    {\n      \"id\": \"901234\",\n      \"name\": \"Backlog\",\n      \"orderindex\": 0,\n      \"status\": {\"status\": \"active\", \"color\": \"#87909e\"},\n      \"task_count\": 25,\n      \"folder\": {\"id\": \"456789\", \"name\": \"Sprint 1\"}\n    }\n  ]\n}\n\nGet Folderless Lists\n\nGET /clickup/api/v2/space/{space_id}/list\n\nGet a List\n\nGET /clickup/api/v2/list/{list_id}\n\nCreate a List\n\nPOST /clickup/api/v2/folder/{folder_id}/list\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'name': 'New List'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/folder/456789/list', 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\nCreate Folderless List\n\nPOST /clickup/api/v2/space/{space_id}/list\n\nUpdate a List\n\nPUT /clickup/api/v2/list/{list_id}\n\nDelete a List\n\nDELETE /clickup/api/v2/list/{list_id}"
      },
      {
        "title": "Tasks",
        "body": "Get Tasks\n\nGET /clickup/api/v2/list/{list_id}/task\n\nQuery parameters:\n\narchived - Include archived tasks (true/false)\npage - Page number (0-indexed)\norder_by - Sort by field (created, updated, due_date)\nreverse - Reverse sort order (true/false)\nsubtasks - Include subtasks (true/false)\nstatuses[] - Filter by status\ninclude_closed - Include closed tasks (true/false)\nassignees[] - Filter by assignee IDs\ndue_date_gt - Due date greater than (Unix ms)\ndue_date_lt - Due date less than (Unix ms)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/list/901234/task?include_closed=true')\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  \"tasks\": [\n    {\n      \"id\": \"abc123\",\n      \"name\": \"Implement login feature\",\n      \"status\": {\"status\": \"in progress\", \"type\": \"custom\", \"color\": \"#4194f6\"},\n      \"priority\": {\"id\": \"2\", \"priority\": \"high\", \"color\": \"#f9d900\"},\n      \"due_date\": \"1709251200000\",\n      \"assignees\": [{\"id\": 123, \"username\": \"Alice Johnson\", \"email\": \"alice@acme.com\"}],\n      \"description\": \"Add OAuth login flow\",\n      \"date_created\": \"1707436800000\",\n      \"date_updated\": \"1708646400000\"\n    }\n  ]\n}\n\nGet a Task\n\nGET /clickup/api/v2/task/{task_id}\n\nQuery parameters:\n\ncustom_task_ids - Use custom task IDs (true/false)\nteam_id - Required when using custom_task_ids\ninclude_subtasks - Include subtasks (true/false)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/task/abc123')\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 a Task\n\nPOST /clickup/api/v2/list/{list_id}/task\nContent-Type: application/json\n\n{\n  \"name\": \"Task name\",\n  \"description\": \"Task description\",\n  \"assignees\": [123],\n  \"status\": \"to do\",\n  \"priority\": 2,\n  \"due_date\": 1709251200000,\n  \"tags\": [\"api\", \"backend\"],\n  \"parent\": null\n}\n\nFields:\n\nname (required) - Task title\ndescription - Task description (supports markdown)\nassignees - Array of user IDs\nstatus - Status name (must match a status in the list)\npriority - Priority level (1=urgent, 2=high, 3=normal, 4=low, null=none)\ndue_date - Unix timestamp in milliseconds\ndue_date_time - Include time in due date (true/false)\nstart_date - Unix timestamp in milliseconds\ntime_estimate - Time estimate in milliseconds\ntags - Array of tag names\nparent - Parent task ID (for subtasks)\ncustom_fields - Array of custom field objects\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'name': 'Complete API integration', 'description': 'Integrate with the new payment API', 'priority': 2, 'due_date': 1709251200000, 'assignees': [123]}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/list/901234/task', 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\nUpdate a Task\n\nPUT /clickup/api/v2/task/{task_id}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'status': 'complete', 'priority': None}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/task/abc123', data=data, method='PUT')\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\nDelete a Task\n\nDELETE /clickup/api/v2/task/{task_id}\n\nGet Filtered Team Tasks\n\nGET /clickup/api/v2/team/{team_id}/task\n\nQuery parameters:\n\npage - Page number (0-indexed)\norder_by - Sort field\nstatuses[] - Filter by statuses\nassignees[] - Filter by assignees\nlist_ids[] - Filter by list IDs\nspace_ids[] - Filter by space IDs\nfolder_ids[] - Filter by folder IDs"
      },
      {
        "title": "Users",
        "body": "Get Current User\n\nGET /clickup/api/v2/user\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/user')\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  \"user\": {\n    \"id\": 123,\n    \"username\": \"Alice Johnson\",\n    \"email\": \"alice@acme.com\",\n    \"color\": \"#7B68EE\",\n    \"profilePicture\": \"https://...\",\n    \"initials\": \"AJ\",\n    \"week_start_day\": 0,\n    \"timezone\": \"America/New_York\"\n  }\n}"
      },
      {
        "title": "Webhooks",
        "body": "Get Webhooks\n\nGET /clickup/api/v2/team/{team_id}/webhook\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team/1234567/webhook')\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 Webhook\n\nPOST /clickup/api/v2/team/{team_id}/webhook\nContent-Type: application/json\n\n{\n  \"endpoint\": \"https://example.com/webhook\",\n  \"events\": [\"taskCreated\", \"taskUpdated\", \"taskDeleted\"],\n  \"space_id\": \"90120001\",\n  \"folder_id\": \"456789\",\n  \"list_id\": \"901234\",\n  \"task_id\": \"abc123\"\n}\n\nEvents:\n\ntaskCreated, taskUpdated, taskDeleted\ntaskPriorityUpdated, taskStatusUpdated\ntaskAssigneeUpdated, taskDueDateUpdated\ntaskTagUpdated, taskMoved\ntaskCommentPosted, taskCommentUpdated\ntaskTimeEstimateUpdated, taskTimeTrackedUpdated\nlistCreated, listUpdated, listDeleted\nfolderCreated, folderUpdated, folderDeleted\nspaceCreated, spaceUpdated, spaceDeleted\ngoalCreated, goalUpdated, goalDeleted\nkeyResultCreated, keyResultUpdated, keyResultDeleted\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'endpoint': 'https://example.com/webhook', 'events': ['taskCreated', 'taskUpdated']}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team/1234567/webhook', 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\nResponse:\n\n{\n  \"id\": \"webhook123\",\n  \"webhook\": {\n    \"id\": \"webhook123\",\n    \"userid\": 123,\n    \"team_id\": \"1234567\",\n    \"endpoint\": \"https://example.com/webhook\",\n    \"client_id\": \"...\",\n    \"events\": [\"taskCreated\", \"taskUpdated\"],\n    \"health\": {\"status\": \"active\", \"fail_count\": 0},\n    \"secret\": \"...\"\n  }\n}\n\nUpdate a Webhook\n\nPUT /clickup/api/v2/webhook/{webhook_id}\n\nDelete a Webhook\n\nDELETE /clickup/api/v2/webhook/{webhook_id}"
      },
      {
        "title": "Pagination",
        "body": "ClickUp uses page-based pagination. Use the page parameter (0-indexed):\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/list/901234/task?page=0')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponses are limited to 100 tasks per page. The response includes a last_page boolean field. Continue incrementing the page number until last_page is true."
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/clickup/api/v2/list/901234/task',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/clickup/api/v2/list/901234/task',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "Task IDs are strings\nTimestamps are Unix milliseconds\nPriority values: 1=urgent, 2=high, 3=normal, 4=low, null=none\nWorkspaces are called \"teams\" in the API\nStatus values must match the exact status names configured in the list\nResponses are limited to 100 items per page\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (statuses[], assignees[], list_ids[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping."
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Bad request or missing ClickUp connection401Invalid or missing Maton API key403Forbidden - insufficient permissions404Resource not found429Rate limited4xx/5xxPassthrough error from ClickUp API"
      },
      {
        "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 clickup. For example:\n\nCorrect: https://gateway.maton.ai/clickup/api/v2/team\nIncorrect: https://gateway.maton.ai/api/v2/team"
      },
      {
        "title": "Resources",
        "body": "ClickUp API Overview\nGet Tasks\nCreate Task\nUpdate Task\nDelete Task\nGet Spaces\nGet Lists\nCreate Webhook\nCustom Fields\nRate Limits\nLLM Reference\nMaton Community\nMaton Support"
      }
    ],
    "body": "ClickUp\n\nAccess the ClickUp API with managed OAuth authentication. Manage tasks, lists, folders, spaces, workspaces, users, and webhooks for work management.\n\nQuick Start\n# List workspaces (teams)\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/clickup/{native-api-path}\n\n\nReplace {native-api-path} with the actual ClickUp API endpoint path. The gateway proxies requests to api.clickup.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 ClickUp 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=clickup&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': 'clickup'}).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\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"clickup\",\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 ClickUp connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\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\nClickUp Hierarchy\n\nClickUp organizes data in a hierarchy:\n\nWorkspace (team) → Space → Folder → List → Task\n\nNote: In the API, Workspaces are referred to as \"teams\".\n\nAPI Reference\nWorkspaces (Teams)\nGet Authorized Workspaces\nGET /clickup/api/v2/team\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team')\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  \"teams\": [\n    {\n      \"id\": \"1234567\",\n      \"name\": \"Acme Corp\",\n      \"color\": \"#7B68EE\",\n      \"avatar\": null,\n      \"members\": [\n        {\n          \"user\": {\n            \"id\": 123,\n            \"username\": \"Alice Johnson\",\n            \"email\": \"alice@acme.com\"\n          }\n        }\n      ]\n    }\n  ]\n}\n\nSpaces\nGet Spaces\nGET /clickup/api/v2/team/{team_id}/space\n\n\nQuery parameters:\n\narchived - Include archived spaces (true/false)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team/1234567/space')\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  \"spaces\": [\n    {\n      \"id\": \"90120001\",\n      \"name\": \"Engineering\",\n      \"private\": false,\n      \"statuses\": [\n        {\"status\": \"to do\", \"type\": \"open\"},\n        {\"status\": \"in progress\", \"type\": \"custom\"},\n        {\"status\": \"done\", \"type\": \"closed\"}\n      ]\n    }\n  ]\n}\n\nGet a Space\nGET /clickup/api/v2/space/{space_id}\n\nCreate a Space\nPOST /clickup/api/v2/team/{team_id}/space\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'name': 'New Space', 'multiple_assignees': True, 'features': {'due_dates': {'enabled': True}, 'time_tracking': {'enabled': True}}}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team/1234567/space', 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\nUpdate a Space\nPUT /clickup/api/v2/space/{space_id}\n\nDelete a Space\nDELETE /clickup/api/v2/space/{space_id}\n\nFolders\nGet Folders\nGET /clickup/api/v2/space/{space_id}/folder\n\n\nQuery parameters:\n\narchived - Include archived folders (true/false)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/space/90120001/folder')\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  \"folders\": [\n    {\n      \"id\": \"456789\",\n      \"name\": \"Sprint 1\",\n      \"orderindex\": 0,\n      \"hidden\": false,\n      \"space\": {\"id\": \"90120001\", \"name\": \"Engineering\"},\n      \"task_count\": \"12\",\n      \"lists\": []\n    }\n  ]\n}\n\nGet a Folder\nGET /clickup/api/v2/folder/{folder_id}\n\nCreate a Folder\nPOST /clickup/api/v2/space/{space_id}/folder\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'name': 'New Folder'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/space/90120001/folder', 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\nUpdate a Folder\nPUT /clickup/api/v2/folder/{folder_id}\n\nDelete a Folder\nDELETE /clickup/api/v2/folder/{folder_id}\n\nLists\nGet Lists\nGET /clickup/api/v2/folder/{folder_id}/list\n\n\nQuery parameters:\n\narchived - Include archived lists (true/false)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/folder/456789/list')\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  \"lists\": [\n    {\n      \"id\": \"901234\",\n      \"name\": \"Backlog\",\n      \"orderindex\": 0,\n      \"status\": {\"status\": \"active\", \"color\": \"#87909e\"},\n      \"task_count\": 25,\n      \"folder\": {\"id\": \"456789\", \"name\": \"Sprint 1\"}\n    }\n  ]\n}\n\nGet Folderless Lists\nGET /clickup/api/v2/space/{space_id}/list\n\nGet a List\nGET /clickup/api/v2/list/{list_id}\n\nCreate a List\nPOST /clickup/api/v2/folder/{folder_id}/list\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'name': 'New List'}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/folder/456789/list', 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\nCreate Folderless List\nPOST /clickup/api/v2/space/{space_id}/list\n\nUpdate a List\nPUT /clickup/api/v2/list/{list_id}\n\nDelete a List\nDELETE /clickup/api/v2/list/{list_id}\n\nTasks\nGet Tasks\nGET /clickup/api/v2/list/{list_id}/task\n\n\nQuery parameters:\n\narchived - Include archived tasks (true/false)\npage - Page number (0-indexed)\norder_by - Sort by field (created, updated, due_date)\nreverse - Reverse sort order (true/false)\nsubtasks - Include subtasks (true/false)\nstatuses[] - Filter by status\ninclude_closed - Include closed tasks (true/false)\nassignees[] - Filter by assignee IDs\ndue_date_gt - Due date greater than (Unix ms)\ndue_date_lt - Due date less than (Unix ms)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/list/901234/task?include_closed=true')\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  \"tasks\": [\n    {\n      \"id\": \"abc123\",\n      \"name\": \"Implement login feature\",\n      \"status\": {\"status\": \"in progress\", \"type\": \"custom\", \"color\": \"#4194f6\"},\n      \"priority\": {\"id\": \"2\", \"priority\": \"high\", \"color\": \"#f9d900\"},\n      \"due_date\": \"1709251200000\",\n      \"assignees\": [{\"id\": 123, \"username\": \"Alice Johnson\", \"email\": \"alice@acme.com\"}],\n      \"description\": \"Add OAuth login flow\",\n      \"date_created\": \"1707436800000\",\n      \"date_updated\": \"1708646400000\"\n    }\n  ]\n}\n\nGet a Task\nGET /clickup/api/v2/task/{task_id}\n\n\nQuery parameters:\n\ncustom_task_ids - Use custom task IDs (true/false)\nteam_id - Required when using custom_task_ids\ninclude_subtasks - Include subtasks (true/false)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/task/abc123')\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 a Task\nPOST /clickup/api/v2/list/{list_id}/task\nContent-Type: application/json\n\n{\n  \"name\": \"Task name\",\n  \"description\": \"Task description\",\n  \"assignees\": [123],\n  \"status\": \"to do\",\n  \"priority\": 2,\n  \"due_date\": 1709251200000,\n  \"tags\": [\"api\", \"backend\"],\n  \"parent\": null\n}\n\n\nFields:\n\nname (required) - Task title\ndescription - Task description (supports markdown)\nassignees - Array of user IDs\nstatus - Status name (must match a status in the list)\npriority - Priority level (1=urgent, 2=high, 3=normal, 4=low, null=none)\ndue_date - Unix timestamp in milliseconds\ndue_date_time - Include time in due date (true/false)\nstart_date - Unix timestamp in milliseconds\ntime_estimate - Time estimate in milliseconds\ntags - Array of tag names\nparent - Parent task ID (for subtasks)\ncustom_fields - Array of custom field objects\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'name': 'Complete API integration', 'description': 'Integrate with the new payment API', 'priority': 2, 'due_date': 1709251200000, 'assignees': [123]}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/list/901234/task', 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\nUpdate a Task\nPUT /clickup/api/v2/task/{task_id}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'status': 'complete', 'priority': None}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/task/abc123', data=data, method='PUT')\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\nDelete a Task\nDELETE /clickup/api/v2/task/{task_id}\n\nGet Filtered Team Tasks\nGET /clickup/api/v2/team/{team_id}/task\n\n\nQuery parameters:\n\npage - Page number (0-indexed)\norder_by - Sort field\nstatuses[] - Filter by statuses\nassignees[] - Filter by assignees\nlist_ids[] - Filter by list IDs\nspace_ids[] - Filter by space IDs\nfolder_ids[] - Filter by folder IDs\nUsers\nGet Current User\nGET /clickup/api/v2/user\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/user')\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  \"user\": {\n    \"id\": 123,\n    \"username\": \"Alice Johnson\",\n    \"email\": \"alice@acme.com\",\n    \"color\": \"#7B68EE\",\n    \"profilePicture\": \"https://...\",\n    \"initials\": \"AJ\",\n    \"week_start_day\": 0,\n    \"timezone\": \"America/New_York\"\n  }\n}\n\nWebhooks\nGet Webhooks\nGET /clickup/api/v2/team/{team_id}/webhook\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team/1234567/webhook')\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 Webhook\nPOST /clickup/api/v2/team/{team_id}/webhook\nContent-Type: application/json\n\n{\n  \"endpoint\": \"https://example.com/webhook\",\n  \"events\": [\"taskCreated\", \"taskUpdated\", \"taskDeleted\"],\n  \"space_id\": \"90120001\",\n  \"folder_id\": \"456789\",\n  \"list_id\": \"901234\",\n  \"task_id\": \"abc123\"\n}\n\n\nEvents:\n\ntaskCreated, taskUpdated, taskDeleted\ntaskPriorityUpdated, taskStatusUpdated\ntaskAssigneeUpdated, taskDueDateUpdated\ntaskTagUpdated, taskMoved\ntaskCommentPosted, taskCommentUpdated\ntaskTimeEstimateUpdated, taskTimeTrackedUpdated\nlistCreated, listUpdated, listDeleted\nfolderCreated, folderUpdated, folderDeleted\nspaceCreated, spaceUpdated, spaceDeleted\ngoalCreated, goalUpdated, goalDeleted\nkeyResultCreated, keyResultUpdated, keyResultDeleted\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'endpoint': 'https://example.com/webhook', 'events': ['taskCreated', 'taskUpdated']}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/team/1234567/webhook', 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\n\nResponse:\n\n{\n  \"id\": \"webhook123\",\n  \"webhook\": {\n    \"id\": \"webhook123\",\n    \"userid\": 123,\n    \"team_id\": \"1234567\",\n    \"endpoint\": \"https://example.com/webhook\",\n    \"client_id\": \"...\",\n    \"events\": [\"taskCreated\", \"taskUpdated\"],\n    \"health\": {\"status\": \"active\", \"fail_count\": 0},\n    \"secret\": \"...\"\n  }\n}\n\nUpdate a Webhook\nPUT /clickup/api/v2/webhook/{webhook_id}\n\nDelete a Webhook\nDELETE /clickup/api/v2/webhook/{webhook_id}\n\nPagination\n\nClickUp uses page-based pagination. Use the page parameter (0-indexed):\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/clickup/api/v2/list/901234/task?page=0')\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\nResponses are limited to 100 tasks per page. The response includes a last_page boolean field. Continue incrementing the page number until last_page is true.\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/clickup/api/v2/list/901234/task',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/clickup/api/v2/list/901234/task',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()\n\nNotes\nTask IDs are strings\nTimestamps are Unix milliseconds\nPriority values: 1=urgent, 2=high, 3=normal, 4=low, null=none\nWorkspaces are called \"teams\" in the API\nStatus values must match the exact status names configured in the list\nResponses are limited to 100 items per page\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (statuses[], assignees[], list_ids[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping.\nError Handling\nStatus\tMeaning\n400\tBad request or missing ClickUp connection\n401\tInvalid or missing Maton API key\n403\tForbidden - insufficient permissions\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from ClickUp API\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 clickup. For example:\nCorrect: https://gateway.maton.ai/clickup/api/v2/team\nIncorrect: https://gateway.maton.ai/api/v2/team\nResources\nClickUp API Overview\nGet Tasks\nCreate Task\nUpdate Task\nDelete Task\nGet Spaces\nGet Lists\nCreate Webhook\nCustom Fields\nRate Limits\nLLM Reference\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/clickup-api",
    "publisherUrl": "https://clawhub.ai/byungkyu/clickup-api",
    "owner": "byungkyu",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clickup-api",
    "downloadUrl": "https://openagent3.xyz/downloads/clickup-api",
    "agentUrl": "https://openagent3.xyz/skills/clickup-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clickup-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clickup-api/agent.md"
  }
}