{
  "info": {
    "name": "ClickUp — mcp.ai",
    "description": "REST API for the ClickUp MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/clickup",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "clickup_add_dependency",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/dependency",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "dependency"
          ]
        },
        "description": "Adds a 'waiting on' or 'blocking' dependency to a task, requiring either `depends on` (task becomes waiting on) or `dependency of` (task becomes blocking), but not both; `team id` is required if `cust",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"depends_on\": \"\",\n  \"depedency_of\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_add_guest_to_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/guest/to/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "guest",
            "to",
            "folder"
          ]
        },
        "description": "Adds a guest to a folder with specified permissions; requires a clickup enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"guest_id\": 0,\n  \"folder_id\": 0,\n  \"include_shared\": false,\n  \"permission_level\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_add_guest_to_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/guest/to/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "guest",
            "to",
            "list"
          ]
        },
        "description": "Shares a clickup list with an existing guest user, granting them specified permissions; requires the workspace to be on the clickup enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0,\n  \"guest_id\": 0,\n  \"include_shared\": false,\n  \"permission_level\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_add_guest_to_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/guest/to/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "guest",
            "to",
            "task"
          ]
        },
        "description": "Assigns a guest to a task with specified permissions; requires clickup enterprise plan, and `team id` if `custom task ids` is true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"guest_id\": 0,\n  \"include_shared\": false,\n  \"custom_task_ids\": false,\n  \"permission_level\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_add_tag_to_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/tag/to/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "tag",
            "to",
            "task"
          ]
        },
        "description": "Adds an existing tag to a specified task; team id is required if custom task ids is true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"tag_name\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_add_tags_from_time_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/tags/from/time/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "tags",
            "from",
            "time",
            "entries"
          ]
        },
        "description": "Associates a list of specified tags with one or more time entries within a given team (workspace).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"team_id\": 0,\n  \"time_entry_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_add_task_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/task/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "task",
            "link"
          ]
        },
        "description": "Links two existing and accessible clickup tasks, identified by `task id` (source) and `links to` (target).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"links_to\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_add_task_to_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/task/to/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "task",
            "to",
            "list"
          ]
        },
        "description": "Adds an existing task to an additional clickup list; the \"tasks in multiple lists\" clickapp must be enabled in the workspace for this.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0,\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_attachments_upload_file_to_task_as_attachment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/attachments/upload/file/to/task/as/attachment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "attachments",
            "upload",
            "file",
            "to",
            "task",
            "as",
            "attachment"
          ]
        },
        "description": "Deprecated: use `create task attachment` to upload a file to a task; requires `multipart/form-data`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"attachment\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_authorization_get_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/authorization/get/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "authorization",
            "get",
            "access",
            "token"
          ]
        },
        "description": "Deprecated: use `get access token` instead. exchanges a clickup oauth 2.0 authorization code for an access token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"client_id\": \"\",\n  \"client_secret\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_authorization_get_work_space_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/authorization/get/work/space/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "authorization",
            "get",
            "work",
            "space",
            "list"
          ]
        },
        "description": "Deprecated: use `get authorized teams workspaces` instead to retrieve workspaces (teams) accessible to the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_authorization_view_account_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/authorization/view/account/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "authorization",
            "view",
            "account",
            "details"
          ]
        },
        "description": "Deprecated: use `get authorized user` instead. retrieves details of the authenticated user's clickup account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_change_tag_names_from_time_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/change/tag/names/from/time/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "change",
            "tag",
            "names",
            "from",
            "time",
            "entries"
          ]
        },
        "description": "Updates the name, background color, and/or foreground color for an existing time entry tag, identified by its current `name` and `team id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tag_bg\": \"\",\n  \"tag_fg\": \"\",\n  \"team_id\": 0,\n  \"new_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_a_time_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/time/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "time",
            "entry"
          ]
        },
        "description": "Creates a new time entry for a specified team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": 0,\n  \"tid\": \"\",\n  \"stop\": 0,\n  \"tags\": \"\",\n  \"start\": 0,\n  \"team_Id\": 0,\n  \"team_id\": 0,\n  \"assignee\": 0,\n  \"billable\": false,\n  \"duration\": 0,\n  \"description\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_chat_view_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/chat/view/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "chat",
            "view",
            "comment"
          ]
        },
        "description": "Posts a new comment to a specified clickup chat view; the 'view id' must correspond to an existing and accessible chat view.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"view_id\": \"\",\n  \"notify_all\": false,\n  \"comment_text\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "checklist"
          ]
        },
        "description": "Creates a new checklist with a specified name within an existing task, which can be identified by its standard id or a custom task id (if `custom task ids` is true, `team id` is also required).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_checklist_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/checklist/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "checklist",
            "item"
          ]
        },
        "description": "Creates a new checklist item within a specified, existing checklist, optionally setting the item's name and assigning it to a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"assignee\": 0,\n  \"checklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder"
          ]
        },
        "description": "Creates a new clickup folder within the specified space, which must exist and be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_folder_view",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder/view",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder",
            "view"
          ]
        },
        "description": "Creates a new, highly customizable view within a specific clickup folder using its `folder id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"folder_id\": 0,\n  \"divide__dir\": \"\",\n  \"filters__op\": \"\",\n  \"divide__field\": \"\",\n  \"grouping__dir\": 0,\n  \"columns__fields\": \"\",\n  \"filters__fields\": \"\",\n  \"filters__search\": \"\",\n  \"grouping__field\": \"\",\n  \"sorting__fields\": \"\",\n  \"grouping__ignore\": false,\n  \"divide__collapsed\": false,\n  \"grouping__collapsed\": \"\",\n  \"filters__show__closed\": false,\n  \"settings__me__comments\": false,\n  \"settings__me__subtasks\": false,\n  \"settings__show__images\": false,\n  \"settings__me__checklists\": false,\n  \"settings__show__subtasks\": 0,\n  \"team__sidebar__assignees\": \"\",\n  \"settings__show__assignees\": false,\n  \"settings__show__task__locations\": false,\n  \"settings__show__closed__subtasks\": false,\n  \"team__sidebar__unassigned__tasks\": false,\n  \"team__sidebar__assigned__comments\": false,\n  \"settings__collapse__empty__columns\": \"\",\n  \"settings__show__subtask__parent__names\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_folderless_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folderless/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folderless",
            "list"
          ]
        },
        "description": "Creates a new folderless list (a list not part of any folder) directly within a specified clickup space.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"status\": \"\",\n  \"content\": \"\",\n  \"assignee\": 0,\n  \"due_date\": 0,\n  \"priority\": 0,\n  \"space_id\": 0,\n  \"due_date_time\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_goal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/goal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "goal"
          ]
        },
        "description": "Creates a new goal in a clickup team (workspace).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"owners\": \"\",\n  \"team_id\": 0,\n  \"due_date\": 0,\n  \"description\": \"\",\n  \"multiple_owners\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_key_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/key/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "key",
            "result"
          ]
        },
        "description": "Creates a new key result (target) for a specified goal in clickup to define and track measurable objectives towards achieving that goal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"unit\": \"\",\n  \"owners\": \"\",\n  \"goal_id\": \"\",\n  \"list_ids\": \"\",\n  \"task_ids\": \"\",\n  \"steps_end\": 0,\n  \"steps_start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "list"
          ]
        },
        "description": "Creates a new list in clickup within a specified, existing folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"status\": \"\",\n  \"content\": \"\",\n  \"assignee\": 0,\n  \"due_date\": 0,\n  \"priority\": 0,\n  \"folder_id\": 0,\n  \"due_date_time\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_list_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/list/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "list",
            "comment"
          ]
        },
        "description": "Adds a new comment with specific text to an existing and accessible clickup list, assigns it to a user, and sets notification preferences for all list members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0,\n  \"assignee\": 0,\n  \"notify_all\": false,\n  \"comment_text\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_list_view",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/list/view",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "list",
            "view"
          ]
        },
        "description": "Creates a new, customizable view (e.g., list, board, calendar) within a specified clickup list, requiring an existing list id accessible by the user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"list_id\": 0,\n  \"divide__dir\": \"\",\n  \"filters__op\": \"\",\n  \"divide__field\": \"\",\n  \"grouping__dir\": 0,\n  \"columns__fields\": \"\",\n  \"filters__fields\": \"\",\n  \"filters__search\": \"\",\n  \"grouping__field\": \"\",\n  \"sorting__fields\": \"\",\n  \"grouping__ignore\": false,\n  \"divide__collapsed\": false,\n  \"grouping__collapsed\": \"\",\n  \"filters__show__closed\": false,\n  \"settings__me__comments\": false,\n  \"settings__me__subtasks\": false,\n  \"settings__show__images\": false,\n  \"settings__me__checklists\": false,\n  \"settings__show__subtasks\": 0,\n  \"team__sidebar__assignees\": \"\",\n  \"settings__show__assignees\": false,\n  \"settings__show__task__locations\": false,\n  \"settings__show__closed__subtasks\": false,\n  \"team__sidebar__unassigned__tasks\": false,\n  \"team__sidebar__assigned__comments\": false,\n  \"settings__collapse__empty__columns\": \"\",\n  \"settings__show__subtask__parent__names\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_space",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/space",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "space"
          ]
        },
        "description": "Creates a new space in a clickup team, with customizable name, privacy, color, and feature settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"private\": false,\n  \"team_id\": \"\",\n  \"features\": {},\n  \"multiple_assignees\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_space_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/space/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "space",
            "tag"
          ]
        },
        "description": "Creates a new tag (name, foreground color, background color) in an existing clickup space.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0,\n  \"tag__name\": \"\",\n  \"tag__tag__bg\": \"\",\n  \"tag__tag__fg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_space_view",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/space/view",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "space",
            "view"
          ]
        },
        "description": "Creates a customizable view (e.g., list, board, gantt) within a specified clickup space, allowing configuration of grouping, sorting, filtering, and display settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"space_id\": 0,\n  \"divide__dir\": \"\",\n  \"filters__op\": \"\",\n  \"divide__field\": \"\",\n  \"grouping__dir\": 0,\n  \"columns__fields\": \"\",\n  \"filters__fields\": \"\",\n  \"filters__search\": \"\",\n  \"grouping__field\": \"\",\n  \"sorting__fields\": \"\",\n  \"grouping__ignore\": false,\n  \"divide__collapsed\": false,\n  \"grouping__collapsed\": \"\",\n  \"filters__show__closed\": false,\n  \"settings__me__comments\": false,\n  \"settings__me__subtasks\": false,\n  \"settings__show__images\": false,\n  \"settings__me__checklists\": false,\n  \"settings__show__subtasks\": 0,\n  \"team__sidebar__assignees\": \"\",\n  \"settings__show__assignees\": false,\n  \"settings__show__task__locations\": false,\n  \"settings__show__closed__subtasks\": false,\n  \"team__sidebar__unassigned__tasks\": false,\n  \"team__sidebar__assigned__comments\": false,\n  \"settings__collapse__empty__columns\": \"\",\n  \"settings__show__subtask__parent__names\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task"
          ]
        },
        "description": "Creates a new clickup task in a specific list, optionally as a subtask if a `parent` task id (which cannot be a subtask itself and must be in the same list) is provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"parent\": \"\",\n  \"status\": \"\",\n  \"list_id\": 0,\n  \"team_id\": 0,\n  \"due_date\": 0,\n  \"links_to\": \"\",\n  \"priority\": 0,\n  \"assignees\": \"\",\n  \"notify_all\": false,\n  \"start_date\": 0,\n  \"description\": \"\",\n  \"custom_fields\": \"\",\n  \"due_date_time\": false,\n  \"time_estimate\": 0,\n  \"custom_item_id\": 0,\n  \"custom_task_ids\": false,\n  \"start_date_time\": false,\n  \"check_required_custom_fields\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_task_attachment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task/attachment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task",
            "attachment"
          ]
        },
        "description": "Uploads a file as an attachment to a specified clickup task, requiring `multipart/form-data` for file upload.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"attachment\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_task_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task",
            "comment"
          ]
        },
        "description": "Adds a comment to a clickup task; `team id` is required if `custom task ids` is true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"assignee\": 0,\n  \"notify_all\": false,\n  \"comment_text\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_task_from_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task/from/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task",
            "from",
            "template"
          ]
        },
        "description": "Creates a new task in a specified clickup list from a task template, using the provided name for the new task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"list_id\": 0,\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "team"
          ]
        },
        "description": "Creates a new team (user group) with specified members in a workspace; member ids must be for existing users, and be aware that adding view-only guests as paid members may incur extra charges.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"members\": \"\",\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Creates a clickup webhook for a team (workspace) to notify a public url on specified events (at least one, or '*' for all), optionally scoped to a space, folder, list, or task; the endpoint must accep",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"events\": \"\",\n  \"list_id\": 0,\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"endpoint\": \"\",\n  \"space_id\": 0,\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_create_workspace_everything_level_view",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/workspace/everything/level/view",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "workspace",
            "everything",
            "level",
            "view"
          ]
        },
        "description": "Creates a new, customizable view (e.g., list, board) at the 'everything' level for a specified team (workspace id), encompassing all tasks within that workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"team_id\": 0,\n  \"divide__dir\": \"\",\n  \"filters__op\": \"\",\n  \"divide__field\": \"\",\n  \"grouping__dir\": 0,\n  \"columns__fields\": \"\",\n  \"filters__fields\": \"\",\n  \"filters__search\": \"\",\n  \"grouping__field\": \"\",\n  \"sorting__fields\": \"\",\n  \"grouping__ignore\": false,\n  \"divide__collapsed\": false,\n  \"grouping__collapsed\": \"\",\n  \"filters__show__closed\": false,\n  \"settings__me__comments\": false,\n  \"settings__me__subtasks\": false,\n  \"settings__show__images\": false,\n  \"settings__me__checklists\": false,\n  \"settings__show__subtasks\": 0,\n  \"team__sidebar__assignees\": \"\",\n  \"settings__show__assignees\": false,\n  \"settings__show__task__locations\": false,\n  \"settings__show__closed__subtasks\": false,\n  \"team__sidebar__unassigned__tasks\": false,\n  \"team__sidebar__assigned__comments\": false,\n  \"settings__collapse__empty__columns\": \"\",\n  \"settings__show__subtask__parent__names\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_a_time_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/time/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "time",
            "entry"
          ]
        },
        "description": "Deletes an existing time entry, specified by `timer id`, from a workspace identified by `team id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"timer_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "checklist"
          ]
        },
        "description": "Permanently deletes an existing checklist identified by its `checklist id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"checklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_checklist_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/checklist/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "checklist",
            "item"
          ]
        },
        "description": "Permanently deletes an existing item, identified by `checklist item id`, from an existing checklist, identified by `checklist id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"checklist_id\": \"\",\n  \"checklist_item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "comment"
          ]
        },
        "description": "Deletes an existing comment from a task using its `comment id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_dependency",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/dependency",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "dependency"
          ]
        },
        "description": "Removes two dependency links for `task id`: one where `task id` is blocked by `depends on`, and another where `dependency of` is blocked by `task id`; `team id` is required if `custom task ids` is tru",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"depends_on\": \"\",\n  \"dependency_of\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "folder"
          ]
        },
        "description": "Permanently and irreversibly deletes a specified folder and all its contents (lists, tasks) if the folder id exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_goal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/goal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "goal"
          ]
        },
        "description": "Permanently removes an existing goal, identified by its `goal id`, from the workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"goal_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_key_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/key/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "key",
            "result"
          ]
        },
        "description": "Deletes an existing key result, also referred to as a target within a goal, identified by its `key result id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_result_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "list"
          ]
        },
        "description": "Permanently deletes an existing list and all its contents; this action is destructive and irreversible via the api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_space",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/space",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "space"
          ]
        },
        "description": "Permanently deletes a specified space in clickup; this action is irreversible as the space cannot be recovered via the api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_space_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/space/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "space",
            "tag"
          ]
        },
        "description": "Deletes a tag from a space, identified by `tag name` in path; precise matching of tag details in the request body (`tag name 1`, `tag tag fg`, `tag tag bg`) is generally required for successful deleti",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0,\n  \"tag_name\": \"\",\n  \"tag__name\": \"\",\n  \"tag__tag__bg\": \"\",\n  \"tag__tag__fg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "task"
          ]
        },
        "description": "Permanently deletes a task, using its standard id or a custom task id (requires `custom task ids=true` and `team id`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_task_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/task/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "task",
            "link"
          ]
        },
        "description": "Deletes an existing link, effectively a dependency or relationship, between two clickup tasks; set `custom task ids=true` and provide `team id` if using custom task ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"links_to\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team"
          ]
        },
        "description": "Permanently deletes an existing team (user group) from the workspace using its `group id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_time_tracked",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/time/tracked",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "time",
            "tracked"
          ]
        },
        "description": "Deletes a time-tracked interval from a task; use this legacy endpoint for older time tracking systems.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"interval_id\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_view",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/view",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "view"
          ]
        },
        "description": "Permanently and irreversibly deletes an existing view in clickup, identified by its `view id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"view_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Permanently removes an existing webhook, specified by its id, thereby ceasing all its event monitoring and notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_edit_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "checklist"
          ]
        },
        "description": "Updates an existing checklist's name or position, identified by its `checklist id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"position\": 0,\n  \"checklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_edit_checklist_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/checklist/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "checklist",
            "item"
          ]
        },
        "description": "Updates an existing checklist item, allowing modification of its name, assignee, resolution status, or parent item for nesting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"parent\": \"\",\n  \"assignee\": \"\",\n  \"resolved\": false,\n  \"checklist_id\": \"\",\n  \"checklist_item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_edit_guest_on_workspace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/guest/on/workspace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "guest",
            "on",
            "workspace"
          ]
        },
        "description": "Modifies the details and permissions of an existing guest user within a specific workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"guest_id\": 0,\n  \"username\": \"\",\n  \"can_edit_tags\": false,\n  \"custom_role_id\": 0,\n  \"can_create_views\": false,\n  \"can_see_time_spent\": false,\n  \"can_see_time_estimated\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_edit_key_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/key/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "key",
            "result"
          ]
        },
        "description": "Updates an existing key result's progress or note in clickup, where the key result measures progress towards a goal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"key_result_id\": \"\",\n  \"steps_current\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_edit_space_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/space/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "space",
            "tag"
          ]
        },
        "description": "Updates an existing tag's name and colors in a clickup space; requires current tag name for identification, and new values for tag name, foreground color, and background color, all of which are mandat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0,\n  \"tag_name\": \"\",\n  \"tag__name\": \"\",\n  \"tag__bg__color\": \"\",\n  \"tag__fg__color\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_edit_time_tracked",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/time/tracked",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "time",
            "tracked"
          ]
        },
        "description": "Edits a legacy time-tracked interval for a task (identified by `task id` and `interval id`) to update its start/end times and duration; `team id` is required if `custom task ids` is true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": 0,\n  \"time\": 0,\n  \"start\": 0,\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"interval_id\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_edit_user_on_workspace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/user/on/workspace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "user",
            "on",
            "workspace"
          ]
        },
        "description": "Updates a user's username, admin status, or custom role in a workspace; requires the workspace to be on an enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"admin\": false,\n  \"team_id\": 0,\n  \"user_id\": 0,\n  \"username\": \"\",\n  \"custom_role_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_folders_create_new_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/folders/create/new/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "folders",
            "create",
            "new",
            "folder"
          ]
        },
        "description": "Deprecated: creates a new folder in a clickup space; use `create folder` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_folders_get_contents_of",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/folders/get/contents/of",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "folders",
            "get",
            "contents",
            "of"
          ]
        },
        "description": "Deprecated: use `get folders`. retrieves folders within a specified clickup space, ensuring `space id` is valid, with an option to filter by archived status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"archived\": false,\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_folders_get_folder_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/folders/get/folder/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "folders",
            "get",
            "folder",
            "content"
          ]
        },
        "description": "Deprecated: retrieves detailed information about a specific folder in clickup; use `get folder` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "access",
            "token"
          ]
        },
        "description": "Exchanges a clickup oauth 2.0 authorization code (obtained after user consent) for an access token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"client_id\": \"\",\n  \"client_secret\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_accessible_custom_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/accessible/custom/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "accessible",
            "custom",
            "fields"
          ]
        },
        "description": "Retrieves all accessible custom field definitions for a specified clickup list using its `list id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_all_tags_from_time_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/tags/from/time/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "tags",
            "from",
            "time",
            "entries"
          ]
        },
        "description": "Retrieves all unique tags applied to time entries within a specified clickup team (workspace).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_authorized_teams_workspaces",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/authorized/teams/workspaces",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "authorized",
            "teams",
            "workspaces"
          ]
        },
        "description": "Retrieves a list of workspaces (teams) the authenticated user can access.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_authorized_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/authorized/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "authorized",
            "user"
          ]
        },
        "description": "Retrieves the details of the currently authenticated clickup user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_bulk_tasks_time_in_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulk/tasks/time/in/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulk",
            "tasks",
            "time",
            "in",
            "status"
          ]
        },
        "description": "Retrieves the time spent in each status for multiple tasks; requires the 'total time in status' clickapp to be enabled in the workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"task_ids\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_chat_view_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/chat/view/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "chat",
            "view",
            "comments"
          ]
        },
        "description": "Retrieves comments from a specified chat view in clickup, supporting pagination via `start` and `start id` to fetch comments older than the default 25 most recent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start\": 0,\n  \"view_id\": \"\",\n  \"start_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_custom_roles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/custom/roles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "custom",
            "roles"
          ]
        },
        "description": "Retrieves all custom roles, which allow granular permission configurations, for a specified workspace (team).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"include_members\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_custom_task_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/custom/task/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "custom",
            "task",
            "types"
          ]
        },
        "description": "Retrieves all custom task types available within a specified workspace (team id).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_filtered_team_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/filtered/team/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "filtered",
            "team",
            "tasks"
          ]
        },
        "description": "Retrieves a paginated list of tasks (up to 100 per page) from a specified team (workspace id in `team id`) based on various filter criteria, respecting user access permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"tags\": \"\",\n  \"parent\": \"\",\n  \"reverse\": false,\n  \"team_Id\": \"\",\n  \"team_id\": 0,\n  \"list_ids\": \"\",\n  \"order_by\": \"\",\n  \"statuses\": \"\",\n  \"subtasks\": false,\n  \"assignees\": \"\",\n  \"space_ids\": \"\",\n  \"due_date_gt\": 0,\n  \"due_date_lt\": 0,\n  \"project_ids\": \"\",\n  \"custom_items\": \"\",\n  \"date_done_gt\": 0,\n  \"date_done_lt\": 0,\n  \"custom_fields\": \"\",\n  \"include_closed\": false,\n  \"custom_task_ids\": false,\n  \"date_created_gt\": 0,\n  \"date_created_lt\": 0,\n  \"date_updated_gt\": 0,\n  \"date_updated_lt\": 0,\n  \"include_markdown_description\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "folder"
          ]
        },
        "description": "Retrieves detailed information about a specific folder in clickup.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_folder_views",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/folder/views",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "folder",
            "views"
          ]
        },
        "description": "Retrieves all configured views (like list, board, calendar) for a specified, existing folder in clickup.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_folderless_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/folderless/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "folderless",
            "lists"
          ]
        },
        "description": "Retrieves all lists within a specified space that are not located in any folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"archived\": false,\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "folders"
          ]
        },
        "description": "Retrieves folders within a specified clickup space, ensuring `space id` is valid, with an option to filter by archived status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"archived\": false,\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_goal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/goal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "goal"
          ]
        },
        "description": "Retrieves detailed information for an existing clickup goal, specified by its unique `goal id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"goal_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_goals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/goals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "goals"
          ]
        },
        "description": "Retrieves goals for a specified clickup workspace (team); the `team id` must be valid and accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"include_completed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_guest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/guest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "guest"
          ]
        },
        "description": "Call this to retrieve detailed information for a specific guest within a team (workspace), ensuring the `guest id` is valid for the given `team id`; this action requires the clickup enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"guest_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "list"
          ]
        },
        "description": "Retrieves detailed information for an existing list in clickup, identified by its unique `list id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_list_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/list/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "list",
            "comments"
          ]
        },
        "description": "Retrieves comments for a specific clickup list, supporting pagination using `start` (timestamp) and `start id` (comment id) to fetch earlier comments; omits them for the latest 25.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start\": 0,\n  \"list_id\": 0,\n  \"start_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_list_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/list/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "list",
            "members"
          ]
        },
        "description": "Retrieves all members of a specific, existing clickup list by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_list_views",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/list/views",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "list",
            "views"
          ]
        },
        "description": "Retrieves all task and page views for a specified and accessible clickup list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists"
          ]
        },
        "description": "Retrieves all lists within a specified, existing clickup folder, optionally filtering by archived status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"archived\": false,\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_running_time_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/running/time/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "running",
            "time",
            "entry"
          ]
        },
        "description": "Retrieves the currently active time entry for a user in a workspace; a negative 'duration' in its data indicates it's running, and the response may be empty if no entry is active.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"assignee\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_singular_time_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/singular/time/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "singular",
            "time",
            "entry"
          ]
        },
        "description": "Fetches a specific time entry by its id for a given team; a negative duration in the response indicates an active timer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"timer_id\": \"\",\n  \"include__task\": false,\n  \"include_location_names\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_space",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/space",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "space"
          ]
        },
        "description": "Retrieves detailed information for an existing space in a clickup workspace, identified by its unique space id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_space_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/space/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "space",
            "tags"
          ]
        },
        "description": "Retrieves all tags for tasks within a specified clickup space, requiring a valid `space id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_space_views",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/space/views",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "space",
            "views"
          ]
        },
        "description": "Retrieves all task and page views for a specified space id in clickup.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_spaces",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/spaces",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "spaces"
          ]
        },
        "description": "Retrieves spaces for a team id; member information for private spaces is returned only if the authenticated user is a member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"archived\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task"
          ]
        },
        "description": "Retrieves comprehensive details for a clickup task by its id, supporting standard or custom task ids (requires `team id` for custom ids).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"custom_task_ids\": false,\n  \"include_subtasks\": false,\n  \"include_markdown_description\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_task_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "comments"
          ]
        },
        "description": "Retrieves up to 25 comments for a specified task, supporting pagination using `start` and `start id` to fetch older comments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start\": 0,\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"start_id\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_task_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "members"
          ]
        },
        "description": "Retrieves users with explicit access (directly assigned or shared) to a specific existing task, excluding users with inherited permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_task_s_time_in_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/s/time/in/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "s",
            "time",
            "in",
            "status"
          ]
        },
        "description": "Retrieves the duration a task has spent in each status, provided the 'total time in status' clickapp is enabled for the workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_task_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "templates"
          ]
        },
        "description": "Retrieves task templates for a specified workspace (team id), supporting pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tasks"
          ]
        },
        "description": "Retrieves tasks from a specified clickup list; only tasks whose home is the given list id are returned.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"tags\": \"\",\n  \"list_id\": 0,\n  \"reverse\": false,\n  \"archived\": false,\n  \"order_by\": \"\",\n  \"statuses\": \"\",\n  \"subtasks\": false,\n  \"assignees\": \"\",\n  \"due_date_gt\": 0,\n  \"due_date_lt\": 0,\n  \"custom_items\": \"\",\n  \"date_done_gt\": 0,\n  \"date_done_lt\": 0,\n  \"custom_fields\": \"\",\n  \"include_closed\": false,\n  \"date_created_gt\": 0,\n  \"date_created_lt\": 0,\n  \"date_updated_gt\": 0,\n  \"date_updated_lt\": 0,\n  \"include_markdown_description\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "teams"
          ]
        },
        "description": "Retrieves user groups (teams) from a clickup workspace, typically requiring `team id` (workspace id), with an option to filter by `group ids`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"group_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_time_entries_within_a_date_range",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/time/entries/within/a/date/range",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "time",
            "entries",
            "within",
            "a",
            "date",
            "range"
          ]
        },
        "description": "Retrieves time entries for a specified team (workspace id) within a date range (defaults to the last 30 days for the authenticated user if dates are omitted); active timers are indicated by negative d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0,\n  \"task_id\": \"\",\n  \"team_Id\": 0,\n  \"team_id\": 0,\n  \"assignee\": \"\",\n  \"end_date\": 0,\n  \"space_id\": 0,\n  \"folder_id\": 0,\n  \"start_date\": 0,\n  \"custom_task_ids\": false,\n  \"include_task_tags\": false,\n  \"include_location_names\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_time_entry_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/time/entry/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "time",
            "entry",
            "history"
          ]
        },
        "description": "Retrieves the modification history for an existing time entry within a specific clickup team (workspace).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"timer_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_tracked_time",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tracked/time",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tracked",
            "time"
          ]
        },
        "description": "Retrieves tracked time for a task using a legacy endpoint; prefer newer time tracking api endpoints for managing time entries.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user"
          ]
        },
        "description": "Retrieves detailed information for a specific user within a clickup workspace (team), available only for workspaces on the clickup enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_view",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/view",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "view"
          ]
        },
        "description": "Fetches details for a specific clickup view, identified by its `view id`, which must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"view_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_view_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/view/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "view",
            "tasks"
          ]
        },
        "description": "Retrieves all tasks visible in a specified clickup view, respecting its applied filters, sorting, and grouping.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"view_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhooks"
          ]
        },
        "description": "Fetches webhooks for a team (workspace), returning only those created by the authenticated user via api, for a `team id` they can access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_workspace_everything_level_views",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workspace/everything/level/views",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workspace",
            "everything",
            "level",
            "views"
          ]
        },
        "description": "Retrieves all task and page views at the 'everything level' (a comprehensive overview of all tasks across all spaces) for a specified clickup workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_workspace_plan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workspace/plan",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workspace",
            "plan"
          ]
        },
        "description": "Retrieves the details of the current subscription plan for a specified clickup workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_get_workspace_seats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workspace/seats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workspace",
            "seats"
          ]
        },
        "description": "Retrieves seat utilization (used, total, available for members/guests) for a clickup workspace (team) id, which must be for an existing workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_invite_guest_to_workspace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/invite/guest/to/workspace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "invite",
            "guest",
            "to",
            "workspace"
          ]
        },
        "description": "Invites a guest by email to a clickup workspace (team) on an enterprise plan, setting initial permissions and optionally a custom role; further access configuration for specific items may require sepa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"team_id\": 0,\n  \"can_edit_tags\": false,\n  \"custom_role_id\": 0,\n  \"can_create_views\": false,\n  \"can_see_time_spent\": false,\n  \"can_see_time_estimated\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_invite_user_to_workspace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/invite/user/to/workspace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "invite",
            "user",
            "to",
            "workspace"
          ]
        },
        "description": "Invites a user via email to a clickup workspace (team), optionally granting admin rights or a custom role; requires an enterprise plan for the workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"admin\": false,\n  \"email\": \"\",\n  \"team_id\": 0,\n  \"custom_role_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_lists_get_folder_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/get/folder/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "get",
            "folder",
            "lists"
          ]
        },
        "description": "Deprecated: use `get lists` instead. retrieves lists from a specified, existing clickup folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"archived\": false,\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_members_get_list_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/members/get/list/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "members",
            "get",
            "list",
            "users"
          ]
        },
        "description": "Deprecated: retrieves users with access to a specific list; use `get list members` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_custom_field_value",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/custom/field/value",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "custom",
            "field",
            "value"
          ]
        },
        "description": "Removes an existing value from a custom field on a specific task; this does not delete the custom field definition or its predefined options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"field_id\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_guest_from_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/guest/from/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "guest",
            "from",
            "folder"
          ]
        },
        "description": "Revokes a guest's access to a specific clickup folder, optionally unsharing items explicitly shared with them within it; requires an enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"guest_id\": 0,\n  \"folder_id\": 0,\n  \"include_shared\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_guest_from_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/guest/from/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "guest",
            "from",
            "list"
          ]
        },
        "description": "Revokes a guest's access to a specific list, provided the guest currently has access to this list and the workspace is on the clickup enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0,\n  \"guest_id\": 0,\n  \"include_shared\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_guest_from_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/guest/from/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "guest",
            "from",
            "task"
          ]
        },
        "description": "Revokes a guest's access to a specific task; only available for workspaces on the clickup enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"guest_id\": 0,\n  \"include_shared\": false,\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_guest_from_workspace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/guest/from/workspace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "guest",
            "from",
            "workspace"
          ]
        },
        "description": "Permanently removes a guest from a specified workspace, revoking all their access; this destructive operation requires the workspace to be on the clickup enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"guest_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_tag_from_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/tag/from/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "tag",
            "from",
            "task"
          ]
        },
        "description": "Removes a tag from a specified task by disassociating it (does not delete the tag from workspace), succeeding even if the tag is not on the task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"tag_name\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_tags_from_time_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/tags/from/time/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "tags",
            "from",
            "time",
            "entries"
          ]
        },
        "description": "Removes tags from specified time entries in a team, without deleting the tags from the workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"team_id\": 0,\n  \"time_entry_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_task_from_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/task/from/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "task",
            "from",
            "list"
          ]
        },
        "description": "Removes a task from an extra list (not its home list); the 'tasks in multiple lists' clickapp must be enabled.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0,\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_remove_user_from_workspace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/user/from/workspace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "user",
            "from",
            "workspace"
          ]
        },
        "description": "Deactivates a user from a specified clickup workspace, revoking their access (user can be reactivated later); requires the workspace to be on an enterprise plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_set_custom_field_value",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/custom/field/value",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "custom",
            "field",
            "value"
          ]
        },
        "description": "Sets or updates a custom field's value for a task; the new value (with type-dependent structure, e.g., `{\"value\": \"text\"}` or `{\"value\": 123, \"value options\": {\"currency type\":\"usd\"}}`) is provided in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"field_id\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_shared_hierarchy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/shared/hierarchy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shared",
            "hierarchy"
          ]
        },
        "description": "Retrieves the hierarchy of tasks, lists, and folders shared with the authenticated user within an existing clickup team (workspace), identified by its `team id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_spaces_get_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/spaces/get/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "spaces",
            "get",
            "details"
          ]
        },
        "description": "Deprecated: retrieves detailed information about a specific space; use the getspace action instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_spaces_get_space_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/spaces/get/space/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "spaces",
            "get",
            "space",
            "details"
          ]
        },
        "description": "Deprecated: use `get spaces` instead; retrieves spaces, with member info for private spaces accessible only if the user is a member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"archived\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_start_a_time_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/a/time/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "a",
            "time",
            "entry"
          ]
        },
        "description": "Starts a new time entry (timer) in the specified team (workspace), optionally associating it with a task, adding a description, setting billable status, or applying tags (tags feature requires busines",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tid\": \"\",\n  \"tags\": \"\",\n  \"team_Id\": 0,\n  \"team_id\": 0,\n  \"billable\": false,\n  \"description\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_stop_a_time_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/a/time/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "a",
            "time",
            "entry"
          ]
        },
        "description": "Stops the authenticated user's currently active time entry in the specified team (workspace), which requires an existing time entry to be running.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_task_checklists_create_new_checklist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/task/checklists/create/new/checklist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "task",
            "checklists",
            "create",
            "new",
            "checklist"
          ]
        },
        "description": "(deprecated: use `create checklist` instead) creates a new checklist with a specified name within an existing task, identifiable by standard id or custom task id (if `custom task ids` is true, `team i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_tasks_get_task_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/tasks/get/task/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tasks",
            "get",
            "task",
            "details"
          ]
        },
        "description": "Retrieves details for a task by its id, supporting standard or custom ids (requires `team id` for custom ids). <<deprecated: this action is deprecated. please use 'get task' instead.>>",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"custom_task_ids\": false,\n  \"include_subtasks\": false,\n  \"include_markdown_description\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_teams_user_groups_create_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/teams/user/groups/create/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "teams",
            "user",
            "groups",
            "create",
            "team"
          ]
        },
        "description": "Deprecated: use 'create team'. creates a team (user group) in a workspace; adding a view-only guest as a paid member may incur extra charges.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"members\": \"\",\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_teams_work_spaces_get_work_space_plan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/teams/work/spaces/get/work/space/plan",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "teams",
            "work",
            "spaces",
            "get",
            "work",
            "space",
            "plan"
          ]
        },
        "description": "Deprecated: retrieves the current plan for the specified workspace; use `get workspace plan` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_teams_work_spaces_get_work_space_seats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/teams/work/spaces/get/work/space/seats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "teams",
            "work",
            "spaces",
            "get",
            "work",
            "space",
            "seats"
          ]
        },
        "description": "Deprecated: use `get workspace seats` to retrieve seat utilization for a clickup workspace (team) id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_track_time",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/track/time",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "track",
            "time"
          ]
        },
        "description": "Records a time entry for a task using clickup's legacy time tracking system; newer endpoints are generally recommended.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": 0,\n  \"time\": 0,\n  \"start\": 0,\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_a_time_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/time/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "time",
            "entry"
          ]
        },
        "description": "Updates an existing clickup time entry; provide `start` and `end` times together, and include `team id` as a query param (request field `team id 1`) if `custom task ids` is true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": 0,\n  \"tid\": \"\",\n  \"tags\": \"\",\n  \"start\": 0,\n  \"team_id\": 0,\n  \"billable\": false,\n  \"duration\": 0,\n  \"timer_id\": 0,\n  \"tag_action\": \"\",\n  \"description\": \"\",\n  \"custom_task_ids\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "comment"
          ]
        },
        "description": "Updates an existing task comment's text, assignee (who must be a valid workspace member), or resolution status, requiring a valid existing comment id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"assignee\": 0,\n  \"resolved\": false,\n  \"comment_id\": 0,\n  \"comment_text\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "folder"
          ]
        },
        "description": "Updates the name of an existing folder in clickup.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_goal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/goal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "goal"
          ]
        },
        "description": "Updates attributes of an existing clickup goal, identified by its `goal id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"goal_id\": \"\",\n  \"due_date\": 0,\n  \"add_owners\": \"\",\n  \"rem_owners\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "list"
          ]
        },
        "description": "Updates attributes of an existing clickup list, such as its name, content, due date, priority, assignee, or color status, identified by its `list id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"status\": \"\",\n  \"content\": \"\",\n  \"list_id\": \"\",\n  \"assignee\": \"\",\n  \"due_date\": 0,\n  \"priority\": 0,\n  \"unset_status\": false,\n  \"due_date_time\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_space",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/space",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "space"
          ]
        },
        "description": "Updates an existing clickup space, allowing modification of its name, color, privacy, and feature settings (clickapps).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"private\": false,\n  \"space_id\": 0,\n  \"admin_can_manage\": false,\n  \"multiple_assignees\": false,\n  \"features__tags__enabled\": false,\n  \"features__checklists__enabled\": false,\n  \"features__due__dates__enabled\": false,\n  \"features__portfolios__enabled\": false,\n  \"features__custom__fields__enabled\": false,\n  \"features__due__dates__start__date\": false,\n  \"features__time__tracking__enabled\": false,\n  \"features__time__estimates__enabled\": false,\n  \"features__dependency__warning__enabled\": false,\n  \"features__remap__dependencies__enabled\": false,\n  \"features__due__dates__remap__due__dates\": false,\n  \"features__due__dates__remap__closed__due__date\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task"
          ]
        },
        "description": "Updates attributes of an existing task; `team id` is required if `custom task ids` is true, use a single space (\" \") for `description` to clear it, and provide at least one modifiable field.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"parent\": \"\",\n  \"status\": \"\",\n  \"task_id\": \"\",\n  \"team_id\": 0,\n  \"archived\": false,\n  \"due_date\": 0,\n  \"priority\": 0,\n  \"start_date\": 0,\n  \"description\": \"\",\n  \"due_date_time\": false,\n  \"time_estimate\": 0,\n  \"assignees__add\": \"\",\n  \"assignees__rem\": \"\",\n  \"custom_item_id\": 0,\n  \"custom_task_ids\": false,\n  \"start_date_time\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "team"
          ]
        },
        "description": "Updates an existing clickup user group (team) using its `group id`; note that adding a view-only guest as a paid member may incur charges.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"handle\": \"\",\n  \"group_id\": \"\",\n  \"members__add\": \"\",\n  \"members__rem\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_view",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/view",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "view"
          ]
        },
        "description": "Updates an existing clickup view's settings such as name, type, grouping, or filters; ensure `parent id` and `parent type` define a valid hierarchy, and that specified field names (e.g. for sorting, c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"view_id\": \"\",\n  \"parent__id\": \"\",\n  \"divide__dir\": \"\",\n  \"filters__op\": \"\",\n  \"parent__type\": 0,\n  \"divide__field\": \"\",\n  \"grouping__dir\": 0,\n  \"columns__fields\": \"\",\n  \"filters__fields\": \"\",\n  \"filters__search\": \"\",\n  \"grouping__field\": \"\",\n  \"sorting__fields\": \"\",\n  \"grouping__ignore\": false,\n  \"divide__collapsed\": false,\n  \"grouping__collapsed\": \"\",\n  \"filters__show__closed\": false,\n  \"settings__me__comments\": false,\n  \"settings__me__subtasks\": false,\n  \"settings__show__images\": false,\n  \"settings__me__checklists\": false,\n  \"settings__show__subtasks\": 0,\n  \"team__sidebar__assignees\": \"\",\n  \"settings__show__assignees\": false,\n  \"settings__show__task__locations\": false,\n  \"settings__show__closed__subtasks\": false,\n  \"team__sidebar__unassigned__tasks\": false,\n  \"team__sidebar__assigned__comments\": false,\n  \"settings__collapse__empty__columns\": \"\",\n  \"settings__show__subtask__parent__names\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_update_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook"
          ]
        },
        "description": "Updates the endpoint url, monitored events, and status of an existing webhook, identified by its `webhook id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"events\": \"\",\n  \"status\": \"\",\n  \"endpoint\": \"\",\n  \"webhook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_views_get_everything_level",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/views/get/everything/level",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "views",
            "get",
            "everything",
            "level"
          ]
        },
        "description": "Deprecated: retrieves task and page views at the everything level of a workspace; use `get workspace everything level views` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "clickup_views_space_views_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/views/space/views/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "views",
            "space",
            "views",
            "get"
          ]
        },
        "description": "(deprecated: use get space views instead) retrieves all task and page views for a specified space id in clickup.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}