{
  "service": "clickup",
  "displayName": "ClickUp",
  "categories": [
    "Productivity"
  ],
  "authTypes": [
    "oauth2",
    "api_key"
  ],
  "auth": [
    {
      "type": "oauth2",
      "authorizationUrl": "https://app.clickup.com/api",
      "tokenUrl": "https://api.clickup.com/api/v2/oauth/token",
      "scopes": [],
      "tokenEndpointAuthMethod": "client_secret_post"
    },
    {
      "type": "api_key",
      "label": "Personal API Token",
      "placeholder": "clickup_personal_token",
      "description": "ClickUp personal API token sent with the Authorization header. Generate it from Settings > Apps, or see https://developer.clickup.com/docs."
    }
  ],
  "homepageUrl": "https://clickup.com",
  "actions": [
    {
      "id": "clickup.add_dependency",
      "service": "clickup",
      "name": "add_dependency",
      "description": "Add a ClickUp dependency relationship to a task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "dependsOnTaskId": {
            "type": "string",
            "description": "The ClickUp task ID that the task depends on."
          },
          "dependencyOfTaskId": {
            "type": "string",
            "description": "The ClickUp task ID that depends on the task."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "added": {
            "type": "boolean",
            "description": "Whether the ClickUp dependency was added."
          }
        },
        "additionalProperties": false,
        "required": [
          "added"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.add_tag_to_task",
      "service": "clickup",
      "name": "add_tag_to_task",
      "description": "Add a ClickUp tag to a task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "tagName": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp tag name."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "tagName"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "added": {
            "type": "boolean",
            "description": "Whether the ClickUp tag was added to the task."
          }
        },
        "additionalProperties": false,
        "required": [
          "added"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.add_task_link",
      "service": "clickup",
      "name": "add_task_link",
      "description": "Add a ClickUp task link to a task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "linksToTaskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID to link to."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "linksToTaskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp task ID."
              },
              "custom_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp custom task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_item_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "string",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "null",
                    "description": "The ClickUp custom item type ID is not set."
                  }
                ],
                "description": "The ClickUp custom item type ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp task name."
              },
              "text_content": {
                "type": "string",
                "description": "The ClickUp plain text task content."
              },
              "description": {
                "type": "string",
                "description": "The ClickUp task description."
              },
              "markdown_description": {
                "type": "string",
                "description": "The ClickUp Markdown task description."
              },
              "status": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp status ID."
                  },
                  "status": {
                    "type": "string",
                    "description": "The ClickUp status name."
                  },
                  "type": {
                    "type": "string",
                    "description": "The ClickUp status type."
                  },
                  "orderindex": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp status order index."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp status order index."
                      }
                    ],
                    "description": "The ClickUp status order index."
                  },
                  "color": {
                    "type": "string",
                    "description": "The ClickUp status color."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "status",
                  "orderindex",
                  "color"
                ],
                "description": "The ClickUp task status."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp task order index."
                  }
                ],
                "description": "The ClickUp task order index."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp task creation timestamp."
              },
              "date_updated": {
                "type": "string",
                "description": "The ClickUp task update timestamp."
              },
              "date_closed": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task close timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "date_done": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task done timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp task is archived."
              },
              "creator": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task creator."
              },
              "assignees": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task assignees."
              },
              "watchers": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task watchers."
              },
              "checklists": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist ID."
                    },
                    "task_id": {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist name."
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist creation timestamp."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist order index."
                        }
                      ],
                      "description": "The ClickUp checklist order index."
                    },
                    "resolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of resolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of resolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of resolved ClickUp checklist items."
                    },
                    "unresolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of unresolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of unresolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of unresolved ClickUp checklist items."
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The ClickUp checklist item ID."
                          },
                          "name": {
                            "type": "string",
                            "description": "The ClickUp checklist item name."
                          },
                          "orderindex": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item order index."
                              },
                              {
                                "type": "number",
                                "description": "The ClickUp checklist item order index."
                              }
                            ],
                            "description": "The ClickUp checklist item order index."
                          },
                          "assignee": {
                            "anyOf": [
                              {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user ID."
                                      },
                                      {
                                        "type": "integer",
                                        "description": "The ClickUp user ID."
                                      }
                                    ],
                                    "description": "The ClickUp user ID."
                                  },
                                  "username": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp username."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "email": {
                                    "type": "string",
                                    "description": "The ClickUp user email address."
                                  },
                                  "color": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user color."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "profilePicture": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp profile picture URL."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "initials": {
                                    "type": "string",
                                    "description": "The ClickUp user initials."
                                  },
                                  "timezone": {
                                    "type": "string",
                                    "description": "The ClickUp user timezone."
                                  }
                                },
                                "additionalProperties": true,
                                "required": [
                                  "id"
                                ],
                                "description": "The ClickUp checklist item assignee."
                              },
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "null",
                                "description": "The ClickUp checklist item has no assignee."
                              }
                            ],
                            "description": "The ClickUp checklist item assignee."
                          },
                          "resolved": {
                            "type": "boolean",
                            "description": "Whether the ClickUp checklist item is resolved."
                          },
                          "parent": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The parent ClickUp checklist item ID."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "date_created": {
                            "type": "string",
                            "description": "The ClickUp checklist item creation timestamp."
                          },
                          "children": {
                            "type": "array",
                            "items": {
                              "type": "string",
                              "description": "A child ClickUp checklist item ID."
                            },
                            "description": "The child ClickUp checklist item IDs."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id",
                          "name",
                          "orderindex",
                          "resolved",
                          "date_created",
                          "children"
                        ],
                        "description": "A ClickUp checklist item."
                      },
                      "description": "The ClickUp checklist items."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "task_id",
                    "name",
                    "orderindex",
                    "resolved",
                    "unresolved",
                    "items"
                  ],
                  "description": "A ClickUp checklist."
                },
                "description": "The ClickUp task checklists."
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The ClickUp tag name."
                    },
                    "tag_fg": {
                      "type": "string",
                      "description": "The ClickUp tag foreground color."
                    },
                    "tag_bg": {
                      "type": "string",
                      "description": "The ClickUp tag background color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "name"
                  ],
                  "description": "A ClickUp task tag."
                },
                "description": "The ClickUp task tags."
              },
              "parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "top_level_parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp top-level parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp priority ID."
                      },
                      "priority": {
                        "type": "string",
                        "description": "The ClickUp priority name."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp priority color."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp priority order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp priority order index."
                          }
                        ],
                        "description": "The ClickUp priority order index."
                      }
                    },
                    "additionalProperties": true,
                    "description": "The ClickUp task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "points": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task points value."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task points value."
                      }
                    ],
                    "description": "The ClickUp task points value."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_estimate": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time estimate."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time estimate."
                      }
                    ],
                    "description": "The ClickUp task time estimate."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_spent": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time spent."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time spent."
                      }
                    ],
                    "description": "The ClickUp task time spent."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_fields": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp custom field object."
                },
                "description": "The ClickUp custom fields."
              },
              "dependencies": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp task dependency object."
                },
                "description": "The ClickUp task dependencies."
              },
              "linked_tasks": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A linked ClickUp task object."
                },
                "description": "The ClickUp linked tasks."
              },
              "locations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A compact ClickUp resource reference."
                },
                "description": "The ClickUp secondary list locations for the task."
              },
              "team_id": {
                "type": "string",
                "description": "The ClickUp workspace ID."
              },
              "url": {
                "type": "string",
                "description": "The ClickUp task URL."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp task permission level."
              },
              "list": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp list ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp list name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the list."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task list."
              },
              "project": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder or project reference."
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder reference."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp space reference."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The ClickUp task after the link was added."
          }
        },
        "additionalProperties": false,
        "required": [
          "task"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.add_task_to_list",
      "service": "clickup",
      "name": "add_task_to_list",
      "description": "Add a ClickUp task to an additional list.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          },
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId",
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "added": {
            "type": "boolean",
            "description": "Whether the ClickUp task was added to the list."
          }
        },
        "additionalProperties": false,
        "required": [
          "added"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_checklist",
      "service": "clickup",
      "name": "create_checklist",
      "description": "Create a checklist on a ClickUp task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist name."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "checklist": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp checklist ID."
              },
              "task_id": {
                "type": "string",
                "description": "The ClickUp parent task ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp checklist name."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp checklist creation timestamp."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp checklist order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp checklist order index."
                  }
                ],
                "description": "The ClickUp checklist order index."
              },
              "resolved": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The number of resolved ClickUp checklist items."
                  },
                  {
                    "type": "number",
                    "description": "The number of resolved ClickUp checklist items."
                  }
                ],
                "description": "The number of resolved ClickUp checklist items."
              },
              "unresolved": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The number of unresolved ClickUp checklist items."
                  },
                  {
                    "type": "number",
                    "description": "The number of unresolved ClickUp checklist items."
                  }
                ],
                "description": "The number of unresolved ClickUp checklist items."
              },
              "items": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist item ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist item name."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist item order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist item order index."
                        }
                      ],
                      "description": "The ClickUp checklist item order index."
                    },
                    "assignee": {
                      "anyOf": [
                        {
                          "type": "object",
                          "properties": {
                            "id": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp user ID."
                                },
                                {
                                  "type": "integer",
                                  "description": "The ClickUp user ID."
                                }
                              ],
                              "description": "The ClickUp user ID."
                            },
                            "username": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp username."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "email": {
                              "type": "string",
                              "description": "The ClickUp user email address."
                            },
                            "color": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp user color."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "profilePicture": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp profile picture URL."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "initials": {
                              "type": "string",
                              "description": "The ClickUp user initials."
                            },
                            "timezone": {
                              "type": "string",
                              "description": "The ClickUp user timezone."
                            }
                          },
                          "additionalProperties": true,
                          "required": [
                            "id"
                          ],
                          "description": "The ClickUp checklist item assignee."
                        },
                        {
                          "type": "string",
                          "description": "The ClickUp checklist item assignee ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp checklist item assignee ID."
                        },
                        {
                          "type": "null",
                          "description": "The ClickUp checklist item has no assignee."
                        }
                      ],
                      "description": "The ClickUp checklist item assignee."
                    },
                    "resolved": {
                      "type": "boolean",
                      "description": "Whether the ClickUp checklist item is resolved."
                    },
                    "parent": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The parent ClickUp checklist item ID."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist item creation timestamp."
                    },
                    "children": {
                      "type": "array",
                      "items": {
                        "type": "string",
                        "description": "A child ClickUp checklist item ID."
                      },
                      "description": "The child ClickUp checklist item IDs."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "name",
                    "orderindex",
                    "resolved",
                    "date_created",
                    "children"
                  ],
                  "description": "A ClickUp checklist item."
                },
                "description": "The ClickUp checklist items."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "task_id",
              "name",
              "orderindex",
              "resolved",
              "unresolved",
              "items"
            ],
            "description": "The created ClickUp checklist."
          }
        },
        "additionalProperties": false,
        "required": [
          "checklist"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_checklist_item",
      "service": "clickup",
      "name": "create_checklist_item",
      "description": "Create a checklist item on a ClickUp checklist.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "checklistId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist item name."
          },
          "assignee": {
            "type": "integer",
            "description": "The ClickUp checklist item assignee user ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "checklistId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "checklist": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp checklist ID."
              },
              "task_id": {
                "type": "string",
                "description": "The ClickUp parent task ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp checklist name."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp checklist creation timestamp."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp checklist order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp checklist order index."
                  }
                ],
                "description": "The ClickUp checklist order index."
              },
              "resolved": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The number of resolved ClickUp checklist items."
                  },
                  {
                    "type": "number",
                    "description": "The number of resolved ClickUp checklist items."
                  }
                ],
                "description": "The number of resolved ClickUp checklist items."
              },
              "unresolved": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The number of unresolved ClickUp checklist items."
                  },
                  {
                    "type": "number",
                    "description": "The number of unresolved ClickUp checklist items."
                  }
                ],
                "description": "The number of unresolved ClickUp checklist items."
              },
              "items": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist item ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist item name."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist item order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist item order index."
                        }
                      ],
                      "description": "The ClickUp checklist item order index."
                    },
                    "assignee": {
                      "anyOf": [
                        {
                          "type": "object",
                          "properties": {
                            "id": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp user ID."
                                },
                                {
                                  "type": "integer",
                                  "description": "The ClickUp user ID."
                                }
                              ],
                              "description": "The ClickUp user ID."
                            },
                            "username": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp username."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "email": {
                              "type": "string",
                              "description": "The ClickUp user email address."
                            },
                            "color": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp user color."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "profilePicture": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp profile picture URL."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "initials": {
                              "type": "string",
                              "description": "The ClickUp user initials."
                            },
                            "timezone": {
                              "type": "string",
                              "description": "The ClickUp user timezone."
                            }
                          },
                          "additionalProperties": true,
                          "required": [
                            "id"
                          ],
                          "description": "The ClickUp checklist item assignee."
                        },
                        {
                          "type": "string",
                          "description": "The ClickUp checklist item assignee ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp checklist item assignee ID."
                        },
                        {
                          "type": "null",
                          "description": "The ClickUp checklist item has no assignee."
                        }
                      ],
                      "description": "The ClickUp checklist item assignee."
                    },
                    "resolved": {
                      "type": "boolean",
                      "description": "Whether the ClickUp checklist item is resolved."
                    },
                    "parent": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The parent ClickUp checklist item ID."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist item creation timestamp."
                    },
                    "children": {
                      "type": "array",
                      "items": {
                        "type": "string",
                        "description": "A child ClickUp checklist item ID."
                      },
                      "description": "The child ClickUp checklist item IDs."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "name",
                    "orderindex",
                    "resolved",
                    "date_created",
                    "children"
                  ],
                  "description": "A ClickUp checklist item."
                },
                "description": "The ClickUp checklist items."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "task_id",
              "name",
              "orderindex",
              "resolved",
              "unresolved",
              "items"
            ],
            "description": "The ClickUp checklist after item creation."
          }
        },
        "additionalProperties": false,
        "required": [
          "checklist"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_folder",
      "service": "clickup",
      "name": "create_folder",
      "description": "Create a ClickUp folder in a space.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder name."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "folder": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp folder ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp folder name."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp folder order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp folder order index."
                  }
                ],
                "description": "The ClickUp folder order index."
              },
              "override_statuses": {
                "type": "boolean",
                "description": "Whether the ClickUp folder overrides statuses."
              },
              "hidden": {
                "type": "boolean",
                "description": "Whether the ClickUp folder is hidden."
              },
              "task_count": {
                "type": "string",
                "description": "The ClickUp folder task count."
              },
              "lists": {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "A ClickUp list ID."
                    },
                    {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "A ClickUp list object."
                    }
                  ],
                  "description": "A ClickUp folder list entry."
                },
                "description": "The ClickUp lists under the folder."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent space."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The created ClickUp folder."
          }
        },
        "additionalProperties": false,
        "required": [
          "folder"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_folderless_list",
      "service": "clickup",
      "name": "create_folderless_list",
      "description": "Create a ClickUp folderless list in a space.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list name."
          },
          "content": {
            "type": "string",
            "description": "The ClickUp list content."
          },
          "markdownContent": {
            "type": "string",
            "description": "The ClickUp Markdown list content."
          },
          "dueDate": {
            "type": "integer",
            "description": "The ClickUp due date timestamp in milliseconds."
          },
          "dueDateTime": {
            "type": "boolean",
            "description": "Whether the ClickUp due date includes time."
          },
          "priority": {
            "anyOf": [
              {
                "type": "integer",
                "const": 1,
                "description": "Urgent ClickUp priority."
              },
              {
                "type": "integer",
                "const": 2,
                "description": "High ClickUp priority."
              },
              {
                "type": "integer",
                "const": 3,
                "description": "Normal ClickUp priority."
              },
              {
                "type": "integer",
                "const": 4,
                "description": "Low ClickUp priority."
              }
            ],
            "description": "The ClickUp list priority. Use 1 for urgent, 2 for high, 3 for normal, and 4 for low."
          },
          "assignee": {
            "type": "integer",
            "description": "The ClickUp assignee user ID."
          },
          "status": {
            "type": "string",
            "description": "The ClickUp list status name."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "list": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp list ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp list name."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp list order index."
                  }
                ],
                "description": "The ClickUp list order index."
              },
              "content": {
                "type": "string",
                "description": "The ClickUp list content."
              },
              "status": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The ClickUp list status descriptor."
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The ClickUp list priority descriptor."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "assignee": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "The ClickUp list assignee."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "task_count": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list task count."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent folder."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent space."
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp list is archived."
              },
              "override_statuses": {
                "type": "boolean",
                "description": "Whether the ClickUp list overrides statuses."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp list permission level."
              },
              "statuses": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "A ClickUp status."
                },
                "description": "The ClickUp list statuses."
              },
              "inbound_address": {
                "type": "string",
                "description": "The ClickUp inbound email address."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The created ClickUp folderless list."
          }
        },
        "additionalProperties": false,
        "required": [
          "list"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_list",
      "service": "clickup",
      "name": "create_list",
      "description": "Create a ClickUp list in a folder.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "folderId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list name."
          },
          "content": {
            "type": "string",
            "description": "The ClickUp list content."
          },
          "markdownContent": {
            "type": "string",
            "description": "The ClickUp Markdown list content."
          },
          "dueDate": {
            "type": "integer",
            "description": "The ClickUp due date timestamp in milliseconds."
          },
          "dueDateTime": {
            "type": "boolean",
            "description": "Whether the ClickUp due date includes time."
          },
          "priority": {
            "anyOf": [
              {
                "type": "integer",
                "const": 1,
                "description": "Urgent ClickUp priority."
              },
              {
                "type": "integer",
                "const": 2,
                "description": "High ClickUp priority."
              },
              {
                "type": "integer",
                "const": 3,
                "description": "Normal ClickUp priority."
              },
              {
                "type": "integer",
                "const": 4,
                "description": "Low ClickUp priority."
              }
            ],
            "description": "The ClickUp list priority. Use 1 for urgent, 2 for high, 3 for normal, and 4 for low."
          },
          "assignee": {
            "type": "integer",
            "description": "The ClickUp assignee user ID."
          },
          "status": {
            "type": "string",
            "description": "The ClickUp list status name."
          }
        },
        "additionalProperties": false,
        "required": [
          "folderId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "list": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp list ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp list name."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp list order index."
                  }
                ],
                "description": "The ClickUp list order index."
              },
              "content": {
                "type": "string",
                "description": "The ClickUp list content."
              },
              "status": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The ClickUp list status descriptor."
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The ClickUp list priority descriptor."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "assignee": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "The ClickUp list assignee."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "task_count": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list task count."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent folder."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent space."
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp list is archived."
              },
              "override_statuses": {
                "type": "boolean",
                "description": "Whether the ClickUp list overrides statuses."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp list permission level."
              },
              "statuses": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "A ClickUp status."
                },
                "description": "The ClickUp list statuses."
              },
              "inbound_address": {
                "type": "string",
                "description": "The ClickUp inbound email address."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The created ClickUp list."
          }
        },
        "additionalProperties": false,
        "required": [
          "list"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_list_from_template",
      "service": "clickup",
      "name": "create_list_from_template",
      "description": "Create a ClickUp list from a folder list template.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "folderId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder ID."
          },
          "templateId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp template ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list name."
          },
          "options": {
            "type": "object",
            "properties": {
              "returnImmediately": {
                "type": "boolean",
                "description": "Whether to return the ClickUp list ID before the template finishes applying."
              }
            },
            "additionalProperties": false,
            "description": "The ClickUp list template instantiation options."
          }
        },
        "additionalProperties": false,
        "required": [
          "folderId",
          "templateId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "list": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp list ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp list name."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp list order index."
                  }
                ],
                "description": "The ClickUp list order index."
              },
              "content": {
                "type": "string",
                "description": "The ClickUp list content."
              },
              "status": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The ClickUp list status descriptor."
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The ClickUp list priority descriptor."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "assignee": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "The ClickUp list assignee."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "task_count": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list task count."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent folder."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent space."
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp list is archived."
              },
              "override_statuses": {
                "type": "boolean",
                "description": "Whether the ClickUp list overrides statuses."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp list permission level."
              },
              "statuses": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "A ClickUp status."
                },
                "description": "The ClickUp list statuses."
              },
              "inbound_address": {
                "type": "string",
                "description": "The ClickUp inbound email address."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The created ClickUp list."
          }
        },
        "additionalProperties": false,
        "required": [
          "list"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_space",
      "service": "clickup",
      "name": "create_space",
      "description": "Create a ClickUp space in a workspace.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space name."
          },
          "multipleAssignees": {
            "type": "boolean",
            "description": "Whether the ClickUp space allows multiple assignees."
          },
          "features": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The ClickUp space feature configuration."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId",
          "name",
          "multipleAssignees",
          "features"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "space": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp space ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp space name."
              },
              "private": {
                "type": "boolean",
                "description": "Whether the ClickUp space is private."
              },
              "color": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp space color."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "avatar": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp space avatar URL."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp space is archived."
              },
              "statuses": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "A ClickUp status."
                },
                "description": "The ClickUp space statuses."
              },
              "members": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "user": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user ID."
                            },
                            {
                              "type": "integer",
                              "description": "The ClickUp user ID."
                            }
                          ],
                          "description": "The ClickUp user ID."
                        },
                        "username": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp username."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "email": {
                          "type": "string",
                          "description": "The ClickUp user email address."
                        },
                        "color": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user color."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "profilePicture": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp profile picture URL."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "initials": {
                          "type": "string",
                          "description": "The ClickUp user initials."
                        },
                        "timezone": {
                          "type": "string",
                          "description": "The ClickUp user timezone."
                        }
                      },
                      "additionalProperties": true,
                      "required": [
                        "id"
                      ],
                      "description": "The ClickUp user in the workspace member entry."
                    }
                  },
                  "additionalProperties": true,
                  "description": "A ClickUp workspace member."
                },
                "description": "The members visible on the ClickUp space."
              },
              "multiple_assignees": {
                "type": "boolean",
                "description": "Whether the ClickUp space allows multiple assignees."
              },
              "features": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The ClickUp space features."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name",
              "private"
            ],
            "description": "The created ClickUp space."
          }
        },
        "additionalProperties": false,
        "required": [
          "space"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_task",
      "service": "clickup",
      "name": "create_task",
      "description": "Create a ClickUp task in a list with optional scheduling and assignee fields.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task name."
          },
          "description": {
            "type": "string",
            "description": "The ClickUp task description."
          },
          "markdownContent": {
            "type": "string",
            "description": "The ClickUp task Markdown description."
          },
          "assigneeIds": {
            "type": "array",
            "items": {
              "type": "integer",
              "description": "A ClickUp integer value."
            },
            "description": "The ClickUp assignee user IDs.",
            "minItems": 1
          },
          "groupAssigneeIds": {
            "type": "array",
            "items": {
              "type": "integer",
              "description": "A ClickUp integer value."
            },
            "description": "The ClickUp group assignee IDs.",
            "minItems": 1
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp string value."
            },
            "description": "The ClickUp tag names.",
            "minItems": 1
          },
          "status": {
            "type": "string",
            "description": "The ClickUp task status name."
          },
          "priority": {
            "anyOf": [
              {
                "anyOf": [
                  {
                    "type": "integer",
                    "const": 1,
                    "description": "Urgent ClickUp priority."
                  },
                  {
                    "type": "integer",
                    "const": 2,
                    "description": "High ClickUp priority."
                  },
                  {
                    "type": "integer",
                    "const": 3,
                    "description": "Normal ClickUp priority."
                  },
                  {
                    "type": "integer",
                    "const": 4,
                    "description": "Low ClickUp priority."
                  }
                ],
                "description": "The ClickUp task priority. Use 1 for urgent, 2 for high, 3 for normal, 4 for low, or null to clear it."
              },
              {
                "type": "null",
                "description": "Clear the ClickUp priority."
              }
            ],
            "description": "The ClickUp task priority. Use 1 for urgent, 2 for high, 3 for normal, 4 for low, or null to clear it."
          },
          "dueDate": {
            "type": "integer",
            "description": "The ClickUp due date timestamp in milliseconds."
          },
          "dueDateTime": {
            "type": "boolean",
            "description": "Whether the ClickUp due date includes time."
          },
          "startDate": {
            "type": "integer",
            "description": "The ClickUp start date timestamp in milliseconds."
          },
          "startDateTime": {
            "type": "boolean",
            "description": "Whether the ClickUp start date includes time."
          },
          "notifyAll": {
            "type": "boolean",
            "description": "Whether to notify all ClickUp watchers."
          },
          "parentTaskId": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The ClickUp parent task ID."
              },
              {
                "type": "null",
                "description": "Clear this ClickUp field."
              }
            ],
            "description": "The ClickUp parent task ID."
          },
          "linksToTaskId": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The ClickUp dependency target task ID."
              },
              {
                "type": "null",
                "description": "Clear this ClickUp field."
              }
            ],
            "description": "The ClickUp dependency target task ID."
          },
          "timeEstimate": {
            "type": "integer",
            "description": "The ClickUp time estimate in milliseconds."
          },
          "points": {
            "type": "number",
            "description": "The ClickUp points value."
          },
          "customFields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true,
              "description": "A ClickUp custom field value object."
            },
            "description": "The ClickUp custom field values."
          },
          "customItemId": {
            "type": "integer",
            "description": "The ClickUp custom item type ID."
          },
          "checkRequiredCustomFields": {
            "type": "boolean",
            "description": "Whether to enforce required ClickUp custom fields."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp task ID."
              },
              "custom_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp custom task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_item_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "string",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "null",
                    "description": "The ClickUp custom item type ID is not set."
                  }
                ],
                "description": "The ClickUp custom item type ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp task name."
              },
              "text_content": {
                "type": "string",
                "description": "The ClickUp plain text task content."
              },
              "description": {
                "type": "string",
                "description": "The ClickUp task description."
              },
              "markdown_description": {
                "type": "string",
                "description": "The ClickUp Markdown task description."
              },
              "status": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp status ID."
                  },
                  "status": {
                    "type": "string",
                    "description": "The ClickUp status name."
                  },
                  "type": {
                    "type": "string",
                    "description": "The ClickUp status type."
                  },
                  "orderindex": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp status order index."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp status order index."
                      }
                    ],
                    "description": "The ClickUp status order index."
                  },
                  "color": {
                    "type": "string",
                    "description": "The ClickUp status color."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "status",
                  "orderindex",
                  "color"
                ],
                "description": "The ClickUp task status."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp task order index."
                  }
                ],
                "description": "The ClickUp task order index."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp task creation timestamp."
              },
              "date_updated": {
                "type": "string",
                "description": "The ClickUp task update timestamp."
              },
              "date_closed": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task close timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "date_done": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task done timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp task is archived."
              },
              "creator": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task creator."
              },
              "assignees": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task assignees."
              },
              "watchers": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task watchers."
              },
              "checklists": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist ID."
                    },
                    "task_id": {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist name."
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist creation timestamp."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist order index."
                        }
                      ],
                      "description": "The ClickUp checklist order index."
                    },
                    "resolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of resolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of resolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of resolved ClickUp checklist items."
                    },
                    "unresolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of unresolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of unresolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of unresolved ClickUp checklist items."
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The ClickUp checklist item ID."
                          },
                          "name": {
                            "type": "string",
                            "description": "The ClickUp checklist item name."
                          },
                          "orderindex": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item order index."
                              },
                              {
                                "type": "number",
                                "description": "The ClickUp checklist item order index."
                              }
                            ],
                            "description": "The ClickUp checklist item order index."
                          },
                          "assignee": {
                            "anyOf": [
                              {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user ID."
                                      },
                                      {
                                        "type": "integer",
                                        "description": "The ClickUp user ID."
                                      }
                                    ],
                                    "description": "The ClickUp user ID."
                                  },
                                  "username": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp username."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "email": {
                                    "type": "string",
                                    "description": "The ClickUp user email address."
                                  },
                                  "color": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user color."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "profilePicture": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp profile picture URL."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "initials": {
                                    "type": "string",
                                    "description": "The ClickUp user initials."
                                  },
                                  "timezone": {
                                    "type": "string",
                                    "description": "The ClickUp user timezone."
                                  }
                                },
                                "additionalProperties": true,
                                "required": [
                                  "id"
                                ],
                                "description": "The ClickUp checklist item assignee."
                              },
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "null",
                                "description": "The ClickUp checklist item has no assignee."
                              }
                            ],
                            "description": "The ClickUp checklist item assignee."
                          },
                          "resolved": {
                            "type": "boolean",
                            "description": "Whether the ClickUp checklist item is resolved."
                          },
                          "parent": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The parent ClickUp checklist item ID."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "date_created": {
                            "type": "string",
                            "description": "The ClickUp checklist item creation timestamp."
                          },
                          "children": {
                            "type": "array",
                            "items": {
                              "type": "string",
                              "description": "A child ClickUp checklist item ID."
                            },
                            "description": "The child ClickUp checklist item IDs."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id",
                          "name",
                          "orderindex",
                          "resolved",
                          "date_created",
                          "children"
                        ],
                        "description": "A ClickUp checklist item."
                      },
                      "description": "The ClickUp checklist items."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "task_id",
                    "name",
                    "orderindex",
                    "resolved",
                    "unresolved",
                    "items"
                  ],
                  "description": "A ClickUp checklist."
                },
                "description": "The ClickUp task checklists."
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The ClickUp tag name."
                    },
                    "tag_fg": {
                      "type": "string",
                      "description": "The ClickUp tag foreground color."
                    },
                    "tag_bg": {
                      "type": "string",
                      "description": "The ClickUp tag background color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "name"
                  ],
                  "description": "A ClickUp task tag."
                },
                "description": "The ClickUp task tags."
              },
              "parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "top_level_parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp top-level parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp priority ID."
                      },
                      "priority": {
                        "type": "string",
                        "description": "The ClickUp priority name."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp priority color."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp priority order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp priority order index."
                          }
                        ],
                        "description": "The ClickUp priority order index."
                      }
                    },
                    "additionalProperties": true,
                    "description": "The ClickUp task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "points": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task points value."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task points value."
                      }
                    ],
                    "description": "The ClickUp task points value."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_estimate": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time estimate."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time estimate."
                      }
                    ],
                    "description": "The ClickUp task time estimate."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_spent": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time spent."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time spent."
                      }
                    ],
                    "description": "The ClickUp task time spent."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_fields": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp custom field object."
                },
                "description": "The ClickUp custom fields."
              },
              "dependencies": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp task dependency object."
                },
                "description": "The ClickUp task dependencies."
              },
              "linked_tasks": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A linked ClickUp task object."
                },
                "description": "The ClickUp linked tasks."
              },
              "locations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A compact ClickUp resource reference."
                },
                "description": "The ClickUp secondary list locations for the task."
              },
              "team_id": {
                "type": "string",
                "description": "The ClickUp workspace ID."
              },
              "url": {
                "type": "string",
                "description": "The ClickUp task URL."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp task permission level."
              },
              "list": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp list ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp list name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the list."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task list."
              },
              "project": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder or project reference."
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder reference."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp space reference."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The created ClickUp task."
          }
        },
        "additionalProperties": false,
        "required": [
          "task"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_task_attachment",
      "service": "clickup",
      "name": "create_task_attachment",
      "description": "Upload an attachment file to a ClickUp task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "fileName": {
            "type": "string",
            "minLength": 1,
            "description": "The file name to use for the ClickUp attachment."
          },
          "mimeType": {
            "type": "string",
            "description": "The MIME type to use for the ClickUp attachment."
          },
          "url": {
            "type": "string",
            "description": "The public URL of the file to fetch before uploading."
          },
          "contentText": {
            "type": "string",
            "description": "The plain text content to upload as a file."
          },
          "contentBase64": {
            "type": "string",
            "description": "The Base64-encoded file content to upload."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "fileName"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "attachment": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp attachment ID."
              },
              "version": {
                "type": "string",
                "description": "The ClickUp attachment version."
              },
              "date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp attachment timestamp."
                  },
                  {
                    "type": "integer",
                    "description": "The ClickUp attachment timestamp."
                  }
                ],
                "description": "The ClickUp attachment timestamp."
              },
              "title": {
                "type": "string",
                "description": "The ClickUp attachment file name."
              },
              "extension": {
                "type": "string",
                "description": "The ClickUp attachment file extension."
              },
              "thumbnail_small": {
                "type": "string",
                "description": "The ClickUp attachment small thumbnail URL."
              },
              "thumbnail_large": {
                "type": "string",
                "description": "The ClickUp attachment large thumbnail URL."
              },
              "url": {
                "type": "string",
                "description": "The ClickUp attachment URL."
              }
            },
            "additionalProperties": true,
            "description": "The uploaded ClickUp attachment."
          }
        },
        "additionalProperties": false,
        "required": [
          "attachment"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_task_comment",
      "service": "clickup",
      "name": "create_task_comment",
      "description": "Create a comment on a ClickUp task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "commentText": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp comment text."
          },
          "assignee": {
            "type": "integer",
            "description": "The ClickUp assignee user ID."
          },
          "groupAssignee": {
            "anyOf": [
              {
                "type": "string",
                "description": "The ClickUp group assignee ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp group assignee ID."
              }
            ],
            "description": "The ClickUp group assignee ID."
          },
          "notifyAll": {
            "type": "boolean",
            "description": "Whether to notify all ClickUp watchers."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "commentText",
          "notifyAll"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "comment": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp comment ID."
              },
              "hist_id": {
                "type": "string",
                "description": "The ClickUp comment history ID."
              },
              "date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp comment mutation timestamp."
                  },
                  {
                    "type": "integer",
                    "description": "The ClickUp comment mutation timestamp."
                  }
                ],
                "description": "The ClickUp comment mutation timestamp."
              }
            },
            "additionalProperties": true,
            "description": "The created ClickUp comment."
          }
        },
        "additionalProperties": false,
        "required": [
          "comment"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_task_from_template",
      "service": "clickup",
      "name": "create_task_from_template",
      "description": "Create a ClickUp task from a task template.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          },
          "templateId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp template ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task name."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId",
          "templateId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "created": {
            "type": "boolean",
            "description": "Whether the ClickUp task was created from the template."
          },
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp task ID."
              },
              "custom_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp custom task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_item_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "string",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "null",
                    "description": "The ClickUp custom item type ID is not set."
                  }
                ],
                "description": "The ClickUp custom item type ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp task name."
              },
              "text_content": {
                "type": "string",
                "description": "The ClickUp plain text task content."
              },
              "description": {
                "type": "string",
                "description": "The ClickUp task description."
              },
              "markdown_description": {
                "type": "string",
                "description": "The ClickUp Markdown task description."
              },
              "status": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp status ID."
                  },
                  "status": {
                    "type": "string",
                    "description": "The ClickUp status name."
                  },
                  "type": {
                    "type": "string",
                    "description": "The ClickUp status type."
                  },
                  "orderindex": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp status order index."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp status order index."
                      }
                    ],
                    "description": "The ClickUp status order index."
                  },
                  "color": {
                    "type": "string",
                    "description": "The ClickUp status color."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "status",
                  "orderindex",
                  "color"
                ],
                "description": "The ClickUp task status."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp task order index."
                  }
                ],
                "description": "The ClickUp task order index."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp task creation timestamp."
              },
              "date_updated": {
                "type": "string",
                "description": "The ClickUp task update timestamp."
              },
              "date_closed": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task close timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "date_done": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task done timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp task is archived."
              },
              "creator": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task creator."
              },
              "assignees": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task assignees."
              },
              "watchers": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task watchers."
              },
              "checklists": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist ID."
                    },
                    "task_id": {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist name."
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist creation timestamp."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist order index."
                        }
                      ],
                      "description": "The ClickUp checklist order index."
                    },
                    "resolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of resolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of resolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of resolved ClickUp checklist items."
                    },
                    "unresolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of unresolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of unresolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of unresolved ClickUp checklist items."
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The ClickUp checklist item ID."
                          },
                          "name": {
                            "type": "string",
                            "description": "The ClickUp checklist item name."
                          },
                          "orderindex": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item order index."
                              },
                              {
                                "type": "number",
                                "description": "The ClickUp checklist item order index."
                              }
                            ],
                            "description": "The ClickUp checklist item order index."
                          },
                          "assignee": {
                            "anyOf": [
                              {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user ID."
                                      },
                                      {
                                        "type": "integer",
                                        "description": "The ClickUp user ID."
                                      }
                                    ],
                                    "description": "The ClickUp user ID."
                                  },
                                  "username": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp username."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "email": {
                                    "type": "string",
                                    "description": "The ClickUp user email address."
                                  },
                                  "color": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user color."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "profilePicture": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp profile picture URL."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "initials": {
                                    "type": "string",
                                    "description": "The ClickUp user initials."
                                  },
                                  "timezone": {
                                    "type": "string",
                                    "description": "The ClickUp user timezone."
                                  }
                                },
                                "additionalProperties": true,
                                "required": [
                                  "id"
                                ],
                                "description": "The ClickUp checklist item assignee."
                              },
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "null",
                                "description": "The ClickUp checklist item has no assignee."
                              }
                            ],
                            "description": "The ClickUp checklist item assignee."
                          },
                          "resolved": {
                            "type": "boolean",
                            "description": "Whether the ClickUp checklist item is resolved."
                          },
                          "parent": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The parent ClickUp checklist item ID."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "date_created": {
                            "type": "string",
                            "description": "The ClickUp checklist item creation timestamp."
                          },
                          "children": {
                            "type": "array",
                            "items": {
                              "type": "string",
                              "description": "A child ClickUp checklist item ID."
                            },
                            "description": "The child ClickUp checklist item IDs."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id",
                          "name",
                          "orderindex",
                          "resolved",
                          "date_created",
                          "children"
                        ],
                        "description": "A ClickUp checklist item."
                      },
                      "description": "The ClickUp checklist items."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "task_id",
                    "name",
                    "orderindex",
                    "resolved",
                    "unresolved",
                    "items"
                  ],
                  "description": "A ClickUp checklist."
                },
                "description": "The ClickUp task checklists."
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The ClickUp tag name."
                    },
                    "tag_fg": {
                      "type": "string",
                      "description": "The ClickUp tag foreground color."
                    },
                    "tag_bg": {
                      "type": "string",
                      "description": "The ClickUp tag background color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "name"
                  ],
                  "description": "A ClickUp task tag."
                },
                "description": "The ClickUp task tags."
              },
              "parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "top_level_parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp top-level parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp priority ID."
                      },
                      "priority": {
                        "type": "string",
                        "description": "The ClickUp priority name."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp priority color."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp priority order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp priority order index."
                          }
                        ],
                        "description": "The ClickUp priority order index."
                      }
                    },
                    "additionalProperties": true,
                    "description": "The ClickUp task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "points": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task points value."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task points value."
                      }
                    ],
                    "description": "The ClickUp task points value."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_estimate": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time estimate."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time estimate."
                      }
                    ],
                    "description": "The ClickUp task time estimate."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_spent": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time spent."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time spent."
                      }
                    ],
                    "description": "The ClickUp task time spent."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_fields": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp custom field object."
                },
                "description": "The ClickUp custom fields."
              },
              "dependencies": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp task dependency object."
                },
                "description": "The ClickUp task dependencies."
              },
              "linked_tasks": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A linked ClickUp task object."
                },
                "description": "The ClickUp linked tasks."
              },
              "locations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A compact ClickUp resource reference."
                },
                "description": "The ClickUp secondary list locations for the task."
              },
              "team_id": {
                "type": "string",
                "description": "The ClickUp workspace ID."
              },
              "url": {
                "type": "string",
                "description": "The ClickUp task URL."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp task permission level."
              },
              "list": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp list ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp list name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the list."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task list."
              },
              "project": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder or project reference."
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder reference."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp space reference."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The created ClickUp task."
          }
        },
        "additionalProperties": false,
        "required": [
          "created"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.create_threaded_comment",
      "service": "clickup",
      "name": "create_threaded_comment",
      "description": "Create a threaded reply on a ClickUp comment.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "commentId": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The ClickUp comment ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp comment ID."
              }
            ],
            "description": "The ClickUp comment ID."
          },
          "commentText": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp comment text."
          },
          "assignee": {
            "type": "integer",
            "description": "The ClickUp assignee user ID."
          },
          "groupAssignee": {
            "anyOf": [
              {
                "type": "string",
                "description": "The ClickUp group assignee ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp group assignee ID."
              }
            ],
            "description": "The ClickUp group assignee ID."
          },
          "notifyAll": {
            "type": "boolean",
            "description": "Whether to notify all ClickUp watchers."
          }
        },
        "additionalProperties": false,
        "required": [
          "commentId",
          "commentText",
          "notifyAll"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "comment": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp comment ID."
              },
              "hist_id": {
                "type": "string",
                "description": "The ClickUp comment history ID."
              },
              "date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp comment mutation timestamp."
                  },
                  {
                    "type": "integer",
                    "description": "The ClickUp comment mutation timestamp."
                  }
                ],
                "description": "The ClickUp comment mutation timestamp."
              }
            },
            "additionalProperties": true,
            "description": "The created ClickUp threaded comment."
          }
        },
        "additionalProperties": false,
        "required": [
          "comment"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_checklist",
      "service": "clickup",
      "name": "delete_checklist",
      "description": "Delete a ClickUp checklist by checklist ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "checklistId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "checklistId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether the ClickUp checklist was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "deleted"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_checklist_item",
      "service": "clickup",
      "name": "delete_checklist_item",
      "description": "Delete a ClickUp checklist item by checklist item ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "checklistId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist ID."
          },
          "checklistItemId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist item ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "checklistId",
          "checklistItemId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether the ClickUp checklist item was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "deleted"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_comment",
      "service": "clickup",
      "name": "delete_comment",
      "description": "Delete a ClickUp comment by comment ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "commentId": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The ClickUp comment ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp comment ID."
              }
            ],
            "description": "The ClickUp comment ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "commentId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether the ClickUp comment was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "deleted"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_dependency",
      "service": "clickup",
      "name": "delete_dependency",
      "description": "Delete a ClickUp dependency relationship from a task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "dependsOnTaskId": {
            "type": "string",
            "description": "The ClickUp task ID that the task depends on."
          },
          "dependencyOfTaskId": {
            "type": "string",
            "description": "The ClickUp task ID that depends on the task."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether the ClickUp dependency was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "deleted"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_folder",
      "service": "clickup",
      "name": "delete_folder",
      "description": "Delete a ClickUp folder by folder ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "folderId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "folderId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether the ClickUp folder was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "deleted"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_list",
      "service": "clickup",
      "name": "delete_list",
      "description": "Delete a ClickUp list by list ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether the ClickUp list was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "deleted"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_space",
      "service": "clickup",
      "name": "delete_space",
      "description": "Delete a ClickUp space by space ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether the ClickUp space was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "deleted"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_task",
      "service": "clickup",
      "name": "delete_task",
      "description": "Delete a ClickUp task by task ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether the ClickUp task was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "deleted"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.delete_task_link",
      "service": "clickup",
      "name": "delete_task_link",
      "description": "Delete a ClickUp task link from a task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "linksToTaskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID to link to."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "linksToTaskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp task ID."
              },
              "custom_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp custom task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_item_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "string",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "null",
                    "description": "The ClickUp custom item type ID is not set."
                  }
                ],
                "description": "The ClickUp custom item type ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp task name."
              },
              "text_content": {
                "type": "string",
                "description": "The ClickUp plain text task content."
              },
              "description": {
                "type": "string",
                "description": "The ClickUp task description."
              },
              "markdown_description": {
                "type": "string",
                "description": "The ClickUp Markdown task description."
              },
              "status": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp status ID."
                  },
                  "status": {
                    "type": "string",
                    "description": "The ClickUp status name."
                  },
                  "type": {
                    "type": "string",
                    "description": "The ClickUp status type."
                  },
                  "orderindex": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp status order index."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp status order index."
                      }
                    ],
                    "description": "The ClickUp status order index."
                  },
                  "color": {
                    "type": "string",
                    "description": "The ClickUp status color."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "status",
                  "orderindex",
                  "color"
                ],
                "description": "The ClickUp task status."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp task order index."
                  }
                ],
                "description": "The ClickUp task order index."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp task creation timestamp."
              },
              "date_updated": {
                "type": "string",
                "description": "The ClickUp task update timestamp."
              },
              "date_closed": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task close timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "date_done": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task done timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp task is archived."
              },
              "creator": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task creator."
              },
              "assignees": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task assignees."
              },
              "watchers": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task watchers."
              },
              "checklists": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist ID."
                    },
                    "task_id": {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist name."
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist creation timestamp."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist order index."
                        }
                      ],
                      "description": "The ClickUp checklist order index."
                    },
                    "resolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of resolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of resolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of resolved ClickUp checklist items."
                    },
                    "unresolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of unresolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of unresolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of unresolved ClickUp checklist items."
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The ClickUp checklist item ID."
                          },
                          "name": {
                            "type": "string",
                            "description": "The ClickUp checklist item name."
                          },
                          "orderindex": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item order index."
                              },
                              {
                                "type": "number",
                                "description": "The ClickUp checklist item order index."
                              }
                            ],
                            "description": "The ClickUp checklist item order index."
                          },
                          "assignee": {
                            "anyOf": [
                              {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user ID."
                                      },
                                      {
                                        "type": "integer",
                                        "description": "The ClickUp user ID."
                                      }
                                    ],
                                    "description": "The ClickUp user ID."
                                  },
                                  "username": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp username."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "email": {
                                    "type": "string",
                                    "description": "The ClickUp user email address."
                                  },
                                  "color": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user color."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "profilePicture": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp profile picture URL."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "initials": {
                                    "type": "string",
                                    "description": "The ClickUp user initials."
                                  },
                                  "timezone": {
                                    "type": "string",
                                    "description": "The ClickUp user timezone."
                                  }
                                },
                                "additionalProperties": true,
                                "required": [
                                  "id"
                                ],
                                "description": "The ClickUp checklist item assignee."
                              },
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "null",
                                "description": "The ClickUp checklist item has no assignee."
                              }
                            ],
                            "description": "The ClickUp checklist item assignee."
                          },
                          "resolved": {
                            "type": "boolean",
                            "description": "Whether the ClickUp checklist item is resolved."
                          },
                          "parent": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The parent ClickUp checklist item ID."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "date_created": {
                            "type": "string",
                            "description": "The ClickUp checklist item creation timestamp."
                          },
                          "children": {
                            "type": "array",
                            "items": {
                              "type": "string",
                              "description": "A child ClickUp checklist item ID."
                            },
                            "description": "The child ClickUp checklist item IDs."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id",
                          "name",
                          "orderindex",
                          "resolved",
                          "date_created",
                          "children"
                        ],
                        "description": "A ClickUp checklist item."
                      },
                      "description": "The ClickUp checklist items."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "task_id",
                    "name",
                    "orderindex",
                    "resolved",
                    "unresolved",
                    "items"
                  ],
                  "description": "A ClickUp checklist."
                },
                "description": "The ClickUp task checklists."
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The ClickUp tag name."
                    },
                    "tag_fg": {
                      "type": "string",
                      "description": "The ClickUp tag foreground color."
                    },
                    "tag_bg": {
                      "type": "string",
                      "description": "The ClickUp tag background color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "name"
                  ],
                  "description": "A ClickUp task tag."
                },
                "description": "The ClickUp task tags."
              },
              "parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "top_level_parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp top-level parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp priority ID."
                      },
                      "priority": {
                        "type": "string",
                        "description": "The ClickUp priority name."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp priority color."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp priority order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp priority order index."
                          }
                        ],
                        "description": "The ClickUp priority order index."
                      }
                    },
                    "additionalProperties": true,
                    "description": "The ClickUp task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "points": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task points value."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task points value."
                      }
                    ],
                    "description": "The ClickUp task points value."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_estimate": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time estimate."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time estimate."
                      }
                    ],
                    "description": "The ClickUp task time estimate."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_spent": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time spent."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time spent."
                      }
                    ],
                    "description": "The ClickUp task time spent."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_fields": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp custom field object."
                },
                "description": "The ClickUp custom fields."
              },
              "dependencies": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp task dependency object."
                },
                "description": "The ClickUp task dependencies."
              },
              "linked_tasks": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A linked ClickUp task object."
                },
                "description": "The ClickUp linked tasks."
              },
              "locations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A compact ClickUp resource reference."
                },
                "description": "The ClickUp secondary list locations for the task."
              },
              "team_id": {
                "type": "string",
                "description": "The ClickUp workspace ID."
              },
              "url": {
                "type": "string",
                "description": "The ClickUp task URL."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp task permission level."
              },
              "list": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp list ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp list name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the list."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task list."
              },
              "project": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder or project reference."
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder reference."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp space reference."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The ClickUp task after the link was deleted."
          }
        },
        "additionalProperties": false,
        "required": [
          "task"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_current_user",
      "service": "clickup",
      "name": "get_current_user",
      "description": "Get the authenticated ClickUp user profile.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "user": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp user ID."
                  },
                  {
                    "type": "integer",
                    "description": "The ClickUp user ID."
                  }
                ],
                "description": "The ClickUp user ID."
              },
              "username": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp username."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "email": {
                "type": "string",
                "description": "The ClickUp user email address."
              },
              "color": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp user color."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "profilePicture": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp profile picture URL."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "initials": {
                "type": "string",
                "description": "The ClickUp user initials."
              },
              "timezone": {
                "type": "string",
                "description": "The ClickUp user timezone."
              }
            },
            "additionalProperties": true,
            "required": [
              "id"
            ],
            "description": "The ClickUp user."
          }
        },
        "additionalProperties": false,
        "required": [
          "user"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_custom_task_types",
      "service": "clickup",
      "name": "get_custom_task_types",
      "description": "Get the ClickUp custom task types available on a workspace.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "customTaskTypes": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp custom task type ID."
                    },
                    {
                      "type": "integer",
                      "description": "The ClickUp custom task type ID."
                    }
                  ],
                  "description": "The ClickUp custom task type ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp custom task type name."
                },
                "name_plural": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp custom task type plural name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "description": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp custom task type description."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name"
              ],
              "description": "A ClickUp custom task type."
            },
            "description": "The ClickUp custom task types."
          }
        },
        "additionalProperties": false,
        "required": [
          "customTaskTypes"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_folder",
      "service": "clickup",
      "name": "get_folder",
      "description": "Get a ClickUp folder by folder ID.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "folderId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "folderId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "folder": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp folder ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp folder name."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp folder order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp folder order index."
                  }
                ],
                "description": "The ClickUp folder order index."
              },
              "override_statuses": {
                "type": "boolean",
                "description": "Whether the ClickUp folder overrides statuses."
              },
              "hidden": {
                "type": "boolean",
                "description": "Whether the ClickUp folder is hidden."
              },
              "task_count": {
                "type": "string",
                "description": "The ClickUp folder task count."
              },
              "lists": {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "A ClickUp list ID."
                    },
                    {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "A ClickUp list object."
                    }
                  ],
                  "description": "A ClickUp folder list entry."
                },
                "description": "The ClickUp lists under the folder."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent space."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The ClickUp folder."
          }
        },
        "additionalProperties": false,
        "required": [
          "folder"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_folder_custom_fields",
      "service": "clickup",
      "name": "get_folder_custom_fields",
      "description": "Get the ClickUp custom fields available on a folder.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "folderId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "folderId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "fields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp custom field ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp custom field name."
                },
                "type": {
                  "type": "string",
                  "description": "The ClickUp custom field type."
                },
                "type_config": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp custom field type configuration."
                },
                "date_created": {
                  "type": "string",
                  "description": "The ClickUp custom field creation timestamp."
                },
                "hide_from_guests": {
                  "type": "boolean",
                  "description": "Whether the ClickUp custom field is hidden from guests."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp custom field."
            },
            "description": "The ClickUp folder custom fields."
          }
        },
        "additionalProperties": false,
        "required": [
          "fields"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_folder_views",
      "service": "clickup",
      "name": "get_folder_views",
      "description": "Get the ClickUp views available on a folder.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "folderId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "folderId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "views": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp view ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp view name."
                },
                "type": {
                  "type": "string",
                  "description": "The ClickUp view type."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp view."
            },
            "description": "The ClickUp folder views."
          }
        },
        "additionalProperties": false,
        "required": [
          "views"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_list",
      "service": "clickup",
      "name": "get_list",
      "description": "Get a ClickUp list by list ID.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "list": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp list ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp list name."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp list order index."
                  }
                ],
                "description": "The ClickUp list order index."
              },
              "content": {
                "type": "string",
                "description": "The ClickUp list content."
              },
              "status": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The ClickUp list status descriptor."
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The ClickUp list priority descriptor."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "assignee": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "The ClickUp list assignee."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "task_count": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list task count."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent folder."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent space."
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp list is archived."
              },
              "override_statuses": {
                "type": "boolean",
                "description": "Whether the ClickUp list overrides statuses."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp list permission level."
              },
              "statuses": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "A ClickUp status."
                },
                "description": "The ClickUp list statuses."
              },
              "inbound_address": {
                "type": "string",
                "description": "The ClickUp inbound email address."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The ClickUp list."
          }
        },
        "additionalProperties": false,
        "required": [
          "list"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_list_custom_fields",
      "service": "clickup",
      "name": "get_list_custom_fields",
      "description": "Get the ClickUp custom fields available on a list.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "fields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp custom field ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp custom field name."
                },
                "type": {
                  "type": "string",
                  "description": "The ClickUp custom field type."
                },
                "type_config": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp custom field type configuration."
                },
                "date_created": {
                  "type": "string",
                  "description": "The ClickUp custom field creation timestamp."
                },
                "hide_from_guests": {
                  "type": "boolean",
                  "description": "Whether the ClickUp custom field is hidden from guests."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp custom field."
            },
            "description": "The ClickUp list custom fields."
          }
        },
        "additionalProperties": false,
        "required": [
          "fields"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_list_members",
      "service": "clickup",
      "name": "get_list_members",
      "description": "Get the ClickUp members with explicit access to a list.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "members": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp user ID."
                    },
                    {
                      "type": "integer",
                      "description": "The ClickUp user ID."
                    }
                  ],
                  "description": "The ClickUp user ID."
                },
                "username": {
                  "type": "string",
                  "description": "The ClickUp username."
                },
                "email": {
                  "type": "string",
                  "description": "The ClickUp user email address."
                },
                "color": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp user color."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "initials": {
                  "type": "string",
                  "description": "The ClickUp user initials."
                },
                "profilePicture": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp profile picture URL."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "profileInfo": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp user profile information block."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "username",
                "email",
                "initials"
              ],
              "description": "A ClickUp member profile."
            },
            "description": "The ClickUp list members."
          }
        },
        "additionalProperties": false,
        "required": [
          "members"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_list_views",
      "service": "clickup",
      "name": "get_list_views",
      "description": "Get the ClickUp views available on a list.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "views": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp view ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp view name."
                },
                "type": {
                  "type": "string",
                  "description": "The ClickUp view type."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp view."
            },
            "description": "The ClickUp list views."
          }
        },
        "additionalProperties": false,
        "required": [
          "views"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_space",
      "service": "clickup",
      "name": "get_space",
      "description": "Get a ClickUp space by space ID.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "space": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp space ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp space name."
              },
              "private": {
                "type": "boolean",
                "description": "Whether the ClickUp space is private."
              },
              "color": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp space color."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "avatar": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp space avatar URL."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp space is archived."
              },
              "statuses": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "A ClickUp status."
                },
                "description": "The ClickUp space statuses."
              },
              "members": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "user": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user ID."
                            },
                            {
                              "type": "integer",
                              "description": "The ClickUp user ID."
                            }
                          ],
                          "description": "The ClickUp user ID."
                        },
                        "username": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp username."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "email": {
                          "type": "string",
                          "description": "The ClickUp user email address."
                        },
                        "color": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user color."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "profilePicture": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp profile picture URL."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "initials": {
                          "type": "string",
                          "description": "The ClickUp user initials."
                        },
                        "timezone": {
                          "type": "string",
                          "description": "The ClickUp user timezone."
                        }
                      },
                      "additionalProperties": true,
                      "required": [
                        "id"
                      ],
                      "description": "The ClickUp user in the workspace member entry."
                    }
                  },
                  "additionalProperties": true,
                  "description": "A ClickUp workspace member."
                },
                "description": "The members visible on the ClickUp space."
              },
              "multiple_assignees": {
                "type": "boolean",
                "description": "Whether the ClickUp space allows multiple assignees."
              },
              "features": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The ClickUp space features."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name",
              "private"
            ],
            "description": "The ClickUp space."
          }
        },
        "additionalProperties": false,
        "required": [
          "space"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_space_custom_fields",
      "service": "clickup",
      "name": "get_space_custom_fields",
      "description": "Get the ClickUp custom fields available on a space.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "fields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp custom field ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp custom field name."
                },
                "type": {
                  "type": "string",
                  "description": "The ClickUp custom field type."
                },
                "type_config": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp custom field type configuration."
                },
                "date_created": {
                  "type": "string",
                  "description": "The ClickUp custom field creation timestamp."
                },
                "hide_from_guests": {
                  "type": "boolean",
                  "description": "Whether the ClickUp custom field is hidden from guests."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp custom field."
            },
            "description": "The ClickUp space custom fields."
          }
        },
        "additionalProperties": false,
        "required": [
          "fields"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_space_tags",
      "service": "clickup",
      "name": "get_space_tags",
      "description": "Get the ClickUp tags available on a space.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "The ClickUp tag name."
                },
                "tag_fg": {
                  "type": "string",
                  "description": "The ClickUp tag foreground color."
                },
                "tag_bg": {
                  "type": "string",
                  "description": "The ClickUp tag background color."
                }
              },
              "additionalProperties": true,
              "required": [
                "name"
              ],
              "description": "A ClickUp task tag."
            },
            "description": "The ClickUp space tags."
          }
        },
        "additionalProperties": false,
        "required": [
          "tags"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_space_views",
      "service": "clickup",
      "name": "get_space_views",
      "description": "Get the ClickUp views available on a space.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "views": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp view ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp view name."
                },
                "type": {
                  "type": "string",
                  "description": "The ClickUp view type."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp view."
            },
            "description": "The ClickUp space views."
          }
        },
        "additionalProperties": false,
        "required": [
          "views"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_task",
      "service": "clickup",
      "name": "get_task",
      "description": "Get a ClickUp task by task ID.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "includeSubtasks": {
            "type": "boolean",
            "description": "Whether to include ClickUp subtasks."
          },
          "includeMarkdownDescription": {
            "type": "boolean",
            "description": "Whether to request ClickUp Markdown task descriptions."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp task ID."
              },
              "custom_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp custom task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_item_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "string",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "null",
                    "description": "The ClickUp custom item type ID is not set."
                  }
                ],
                "description": "The ClickUp custom item type ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp task name."
              },
              "text_content": {
                "type": "string",
                "description": "The ClickUp plain text task content."
              },
              "description": {
                "type": "string",
                "description": "The ClickUp task description."
              },
              "markdown_description": {
                "type": "string",
                "description": "The ClickUp Markdown task description."
              },
              "status": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp status ID."
                  },
                  "status": {
                    "type": "string",
                    "description": "The ClickUp status name."
                  },
                  "type": {
                    "type": "string",
                    "description": "The ClickUp status type."
                  },
                  "orderindex": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp status order index."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp status order index."
                      }
                    ],
                    "description": "The ClickUp status order index."
                  },
                  "color": {
                    "type": "string",
                    "description": "The ClickUp status color."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "status",
                  "orderindex",
                  "color"
                ],
                "description": "The ClickUp task status."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp task order index."
                  }
                ],
                "description": "The ClickUp task order index."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp task creation timestamp."
              },
              "date_updated": {
                "type": "string",
                "description": "The ClickUp task update timestamp."
              },
              "date_closed": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task close timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "date_done": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task done timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp task is archived."
              },
              "creator": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task creator."
              },
              "assignees": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task assignees."
              },
              "watchers": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task watchers."
              },
              "checklists": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist ID."
                    },
                    "task_id": {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist name."
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist creation timestamp."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist order index."
                        }
                      ],
                      "description": "The ClickUp checklist order index."
                    },
                    "resolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of resolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of resolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of resolved ClickUp checklist items."
                    },
                    "unresolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of unresolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of unresolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of unresolved ClickUp checklist items."
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The ClickUp checklist item ID."
                          },
                          "name": {
                            "type": "string",
                            "description": "The ClickUp checklist item name."
                          },
                          "orderindex": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item order index."
                              },
                              {
                                "type": "number",
                                "description": "The ClickUp checklist item order index."
                              }
                            ],
                            "description": "The ClickUp checklist item order index."
                          },
                          "assignee": {
                            "anyOf": [
                              {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user ID."
                                      },
                                      {
                                        "type": "integer",
                                        "description": "The ClickUp user ID."
                                      }
                                    ],
                                    "description": "The ClickUp user ID."
                                  },
                                  "username": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp username."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "email": {
                                    "type": "string",
                                    "description": "The ClickUp user email address."
                                  },
                                  "color": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user color."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "profilePicture": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp profile picture URL."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "initials": {
                                    "type": "string",
                                    "description": "The ClickUp user initials."
                                  },
                                  "timezone": {
                                    "type": "string",
                                    "description": "The ClickUp user timezone."
                                  }
                                },
                                "additionalProperties": true,
                                "required": [
                                  "id"
                                ],
                                "description": "The ClickUp checklist item assignee."
                              },
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "null",
                                "description": "The ClickUp checklist item has no assignee."
                              }
                            ],
                            "description": "The ClickUp checklist item assignee."
                          },
                          "resolved": {
                            "type": "boolean",
                            "description": "Whether the ClickUp checklist item is resolved."
                          },
                          "parent": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The parent ClickUp checklist item ID."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "date_created": {
                            "type": "string",
                            "description": "The ClickUp checklist item creation timestamp."
                          },
                          "children": {
                            "type": "array",
                            "items": {
                              "type": "string",
                              "description": "A child ClickUp checklist item ID."
                            },
                            "description": "The child ClickUp checklist item IDs."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id",
                          "name",
                          "orderindex",
                          "resolved",
                          "date_created",
                          "children"
                        ],
                        "description": "A ClickUp checklist item."
                      },
                      "description": "The ClickUp checklist items."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "task_id",
                    "name",
                    "orderindex",
                    "resolved",
                    "unresolved",
                    "items"
                  ],
                  "description": "A ClickUp checklist."
                },
                "description": "The ClickUp task checklists."
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The ClickUp tag name."
                    },
                    "tag_fg": {
                      "type": "string",
                      "description": "The ClickUp tag foreground color."
                    },
                    "tag_bg": {
                      "type": "string",
                      "description": "The ClickUp tag background color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "name"
                  ],
                  "description": "A ClickUp task tag."
                },
                "description": "The ClickUp task tags."
              },
              "parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "top_level_parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp top-level parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp priority ID."
                      },
                      "priority": {
                        "type": "string",
                        "description": "The ClickUp priority name."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp priority color."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp priority order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp priority order index."
                          }
                        ],
                        "description": "The ClickUp priority order index."
                      }
                    },
                    "additionalProperties": true,
                    "description": "The ClickUp task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "points": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task points value."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task points value."
                      }
                    ],
                    "description": "The ClickUp task points value."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_estimate": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time estimate."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time estimate."
                      }
                    ],
                    "description": "The ClickUp task time estimate."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_spent": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time spent."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time spent."
                      }
                    ],
                    "description": "The ClickUp task time spent."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_fields": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp custom field object."
                },
                "description": "The ClickUp custom fields."
              },
              "dependencies": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp task dependency object."
                },
                "description": "The ClickUp task dependencies."
              },
              "linked_tasks": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A linked ClickUp task object."
                },
                "description": "The ClickUp linked tasks."
              },
              "locations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A compact ClickUp resource reference."
                },
                "description": "The ClickUp secondary list locations for the task."
              },
              "team_id": {
                "type": "string",
                "description": "The ClickUp workspace ID."
              },
              "url": {
                "type": "string",
                "description": "The ClickUp task URL."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp task permission level."
              },
              "list": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp list ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp list name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the list."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task list."
              },
              "project": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder or project reference."
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder reference."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp space reference."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The ClickUp task."
          }
        },
        "additionalProperties": false,
        "required": [
          "task"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_task_comments",
      "service": "clickup",
      "name": "get_task_comments",
      "description": "Get the comments on a ClickUp task.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "start": {
            "type": "integer",
            "description": "The ClickUp comment timestamp for pagination."
          },
          "startId": {
            "type": "string",
            "description": "The ClickUp comment ID for pagination."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "comments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp comment ID."
                },
                "comment": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "text": {
                        "type": "string",
                        "description": "The ClickUp comment text segment."
                      }
                    },
                    "additionalProperties": true,
                    "description": "A ClickUp comment text segment."
                  },
                  "description": "The ClickUp comment segments."
                },
                "comment_text": {
                  "type": "string",
                  "description": "The ClickUp comment text."
                },
                "user": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp comment author."
                },
                "resolved": {
                  "type": "boolean",
                  "description": "Whether the ClickUp comment is resolved."
                },
                "assignee": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp comment assignee."
                },
                "assigned_by": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp user who assigned the comment."
                },
                "reactions": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A ClickUp comment reaction entry."
                  },
                  "description": "The ClickUp comment reactions."
                },
                "date": {
                  "type": "string",
                  "description": "The ClickUp comment timestamp."
                },
                "reply_count": {
                  "type": "string",
                  "description": "The number of replies on the ClickUp comment."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "comment",
                "comment_text",
                "user",
                "resolved",
                "assignee",
                "assigned_by",
                "reactions",
                "date"
              ],
              "description": "A ClickUp comment."
            },
            "description": "The ClickUp task comments."
          }
        },
        "additionalProperties": false,
        "required": [
          "comments"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_task_members",
      "service": "clickup",
      "name": "get_task_members",
      "description": "Get the ClickUp members with explicit access to a task.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "members": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp user ID."
                    },
                    {
                      "type": "integer",
                      "description": "The ClickUp user ID."
                    }
                  ],
                  "description": "The ClickUp user ID."
                },
                "username": {
                  "type": "string",
                  "description": "The ClickUp username."
                },
                "email": {
                  "type": "string",
                  "description": "The ClickUp user email address."
                },
                "color": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp user color."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "initials": {
                  "type": "string",
                  "description": "The ClickUp user initials."
                },
                "profilePicture": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp profile picture URL."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "profileInfo": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp user profile information block."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "username",
                "email",
                "initials"
              ],
              "description": "A ClickUp member profile."
            },
            "description": "The ClickUp task members."
          }
        },
        "additionalProperties": false,
        "required": [
          "members"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_task_templates",
      "service": "clickup",
      "name": "get_task_templates",
      "description": "Get the ClickUp task templates available in a workspace.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          },
          "page": {
            "type": "integer",
            "description": "The zero-based ClickUp page index."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId",
          "page"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "templates": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp task template ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp task template name."
                }
              },
              "additionalProperties": true,
              "required": [
                "id"
              ],
              "description": "A ClickUp task template."
            },
            "description": "The ClickUp task templates."
          }
        },
        "additionalProperties": false,
        "required": [
          "templates"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_threaded_comments",
      "service": "clickup",
      "name": "get_threaded_comments",
      "description": "Get the threaded replies on a ClickUp comment.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "commentId": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The ClickUp comment ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp comment ID."
              }
            ],
            "description": "The ClickUp comment ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "commentId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "comments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp comment ID."
                },
                "comment": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "text": {
                        "type": "string",
                        "description": "The ClickUp comment text segment."
                      }
                    },
                    "additionalProperties": true,
                    "description": "A ClickUp comment text segment."
                  },
                  "description": "The ClickUp comment segments."
                },
                "comment_text": {
                  "type": "string",
                  "description": "The ClickUp comment text."
                },
                "user": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp comment author."
                },
                "resolved": {
                  "type": "boolean",
                  "description": "Whether the ClickUp comment is resolved."
                },
                "assignee": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp comment assignee."
                },
                "assigned_by": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp user who assigned the comment."
                },
                "reactions": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A ClickUp comment reaction entry."
                  },
                  "description": "The ClickUp comment reactions."
                },
                "date": {
                  "type": "string",
                  "description": "The ClickUp comment timestamp."
                },
                "reply_count": {
                  "type": "string",
                  "description": "The number of replies on the ClickUp comment."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "comment",
                "comment_text",
                "user",
                "resolved",
                "assignee",
                "assigned_by",
                "reactions",
                "date"
              ],
              "description": "A ClickUp comment."
            },
            "description": "The ClickUp threaded comments."
          }
        },
        "additionalProperties": false,
        "required": [
          "comments"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_user",
      "service": "clickup",
      "name": "get_user",
      "description": "Get a ClickUp workspace user by user ID.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          },
          "userId": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The ClickUp user ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp user ID."
              }
            ],
            "description": "The ClickUp user ID."
          },
          "includeShared": {
            "type": "boolean",
            "description": "Whether to include items shared with the ClickUp user."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId",
          "userId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "member": {
            "type": "object",
            "properties": {
              "user": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp user details."
              },
              "invited_by": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp user who invited this member."
              },
              "shared": {
                "type": "object",
                "properties": {
                  "tasks": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "A ClickUp task ID."
                    },
                    "description": "The shared ClickUp tasks."
                  },
                  "lists": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "A ClickUp list ID."
                    },
                    "description": "The shared ClickUp lists."
                  },
                  "folders": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "A ClickUp folder ID."
                    },
                    "description": "The shared ClickUp folders."
                  }
                },
                "additionalProperties": true,
                "description": "The ClickUp items shared with this member."
              }
            },
            "additionalProperties": true,
            "required": [
              "user"
            ],
            "description": "The ClickUp workspace user member."
          }
        },
        "additionalProperties": false,
        "required": [
          "member"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_view",
      "service": "clickup",
      "name": "get_view",
      "description": "Get a ClickUp view by view ID.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "viewId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp view ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "viewId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "view": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp view ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp view name."
              },
              "type": {
                "type": "string",
                "description": "The ClickUp view type."
              }
            },
            "additionalProperties": true,
            "description": "The ClickUp view."
          }
        },
        "additionalProperties": false,
        "required": [
          "view"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_view_tasks",
      "service": "clickup",
      "name": "get_view_tasks",
      "description": "Get the visible ClickUp tasks in a view.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "viewId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp view ID."
          },
          "page": {
            "type": "integer",
            "description": "The zero-based ClickUp view task page index."
          }
        },
        "additionalProperties": false,
        "required": [
          "viewId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tasks": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp task ID."
                },
                "custom_id": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp custom task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "custom_item_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "The ClickUp custom item type ID."
                    },
                    {
                      "type": "string",
                      "description": "The ClickUp custom item type ID."
                    },
                    {
                      "type": "null",
                      "description": "The ClickUp custom item type ID is not set."
                    }
                  ],
                  "description": "The ClickUp custom item type ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp task name."
                },
                "text_content": {
                  "type": "string",
                  "description": "The ClickUp plain text task content."
                },
                "description": {
                  "type": "string",
                  "description": "The ClickUp task description."
                },
                "markdown_description": {
                  "type": "string",
                  "description": "The ClickUp Markdown task description."
                },
                "status": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "The ClickUp task status."
                },
                "orderindex": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task order index."
                    },
                    {
                      "type": "number",
                      "description": "The ClickUp task order index."
                    }
                  ],
                  "description": "The ClickUp task order index."
                },
                "date_created": {
                  "type": "string",
                  "description": "The ClickUp task creation timestamp."
                },
                "date_updated": {
                  "type": "string",
                  "description": "The ClickUp task update timestamp."
                },
                "date_closed": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task close timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "date_done": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task done timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "archived": {
                  "type": "boolean",
                  "description": "Whether the ClickUp task is archived."
                },
                "creator": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp task creator."
                },
                "assignees": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A ClickUp user."
                  },
                  "description": "The ClickUp task assignees."
                },
                "watchers": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A ClickUp user."
                  },
                  "description": "The ClickUp task watchers."
                },
                "checklists": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp checklist ID."
                      },
                      "task_id": {
                        "type": "string",
                        "description": "The ClickUp parent task ID."
                      },
                      "name": {
                        "type": "string",
                        "description": "The ClickUp checklist name."
                      },
                      "date_created": {
                        "type": "string",
                        "description": "The ClickUp checklist creation timestamp."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp checklist order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp checklist order index."
                          }
                        ],
                        "description": "The ClickUp checklist order index."
                      },
                      "resolved": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The number of resolved ClickUp checklist items."
                          },
                          {
                            "type": "number",
                            "description": "The number of resolved ClickUp checklist items."
                          }
                        ],
                        "description": "The number of resolved ClickUp checklist items."
                      },
                      "unresolved": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The number of unresolved ClickUp checklist items."
                          },
                          {
                            "type": "number",
                            "description": "The number of unresolved ClickUp checklist items."
                          }
                        ],
                        "description": "The number of unresolved ClickUp checklist items."
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "The ClickUp checklist item ID."
                            },
                            "name": {
                              "type": "string",
                              "description": "The ClickUp checklist item name."
                            },
                            "orderindex": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp checklist item order index."
                                },
                                {
                                  "type": "number",
                                  "description": "The ClickUp checklist item order index."
                                }
                              ],
                              "description": "The ClickUp checklist item order index."
                            },
                            "assignee": {
                              "anyOf": [
                                {
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp user ID."
                                        },
                                        {
                                          "type": "integer",
                                          "description": "The ClickUp user ID."
                                        }
                                      ],
                                      "description": "The ClickUp user ID."
                                    },
                                    "username": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp username."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "email": {
                                      "type": "string",
                                      "description": "The ClickUp user email address."
                                    },
                                    "color": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp user color."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "profilePicture": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp profile picture URL."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "initials": {
                                      "type": "string",
                                      "description": "The ClickUp user initials."
                                    },
                                    "timezone": {
                                      "type": "string",
                                      "description": "The ClickUp user timezone."
                                    }
                                  },
                                  "additionalProperties": true,
                                  "required": [
                                    "id"
                                  ],
                                  "description": "The ClickUp checklist item assignee."
                                },
                                {
                                  "type": "string",
                                  "description": "The ClickUp checklist item assignee ID."
                                },
                                {
                                  "type": "integer",
                                  "description": "The ClickUp checklist item assignee ID."
                                },
                                {
                                  "type": "null",
                                  "description": "The ClickUp checklist item has no assignee."
                                }
                              ],
                              "description": "The ClickUp checklist item assignee."
                            },
                            "resolved": {
                              "type": "boolean",
                              "description": "Whether the ClickUp checklist item is resolved."
                            },
                            "parent": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The parent ClickUp checklist item ID."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "date_created": {
                              "type": "string",
                              "description": "The ClickUp checklist item creation timestamp."
                            },
                            "children": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "description": "A child ClickUp checklist item ID."
                              },
                              "description": "The child ClickUp checklist item IDs."
                            }
                          },
                          "additionalProperties": true,
                          "required": [
                            "id",
                            "name",
                            "orderindex",
                            "resolved",
                            "date_created",
                            "children"
                          ],
                          "description": "A ClickUp checklist item."
                        },
                        "description": "The ClickUp checklist items."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id",
                      "task_id",
                      "name",
                      "orderindex",
                      "resolved",
                      "unresolved",
                      "items"
                    ],
                    "description": "A ClickUp checklist."
                  },
                  "description": "The ClickUp task checklists."
                },
                "tags": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "The ClickUp tag name."
                      },
                      "tag_fg": {
                        "type": "string",
                        "description": "The ClickUp tag foreground color."
                      },
                      "tag_bg": {
                        "type": "string",
                        "description": "The ClickUp tag background color."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "name"
                    ],
                    "description": "A ClickUp task tag."
                  },
                  "description": "The ClickUp task tags."
                },
                "parent": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "top_level_parent": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp top-level parent task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "priority": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "The ClickUp priority ID."
                        },
                        "priority": {
                          "type": "string",
                          "description": "The ClickUp priority name."
                        },
                        "color": {
                          "type": "string",
                          "description": "The ClickUp priority color."
                        },
                        "orderindex": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp priority order index."
                            },
                            {
                              "type": "number",
                              "description": "The ClickUp priority order index."
                            }
                          ],
                          "description": "The ClickUp priority order index."
                        }
                      },
                      "additionalProperties": true,
                      "description": "The ClickUp task priority."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "due_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task due date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "start_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task start date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "points": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task points value."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task points value."
                        }
                      ],
                      "description": "The ClickUp task points value."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "time_estimate": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task time estimate."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task time estimate."
                        }
                      ],
                      "description": "The ClickUp task time estimate."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "time_spent": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task time spent."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task time spent."
                        }
                      ],
                      "description": "The ClickUp task time spent."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "custom_fields": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A ClickUp custom field object."
                  },
                  "description": "The ClickUp custom fields."
                },
                "dependencies": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A ClickUp task dependency object."
                  },
                  "description": "The ClickUp task dependencies."
                },
                "linked_tasks": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A linked ClickUp task object."
                  },
                  "description": "The ClickUp linked tasks."
                },
                "locations": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp resource ID."
                      },
                      "name": {
                        "type": "string",
                        "description": "The ClickUp resource name."
                      },
                      "hidden": {
                        "type": "boolean",
                        "description": "Whether the ClickUp resource is hidden."
                      },
                      "access": {
                        "type": "boolean",
                        "description": "Whether the authenticated user can access the resource."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A compact ClickUp resource reference."
                  },
                  "description": "The ClickUp secondary list locations for the task."
                },
                "team_id": {
                  "type": "string",
                  "description": "The ClickUp workspace ID."
                },
                "url": {
                  "type": "string",
                  "description": "The ClickUp task URL."
                },
                "permission_level": {
                  "type": "string",
                  "description": "The ClickUp task permission level."
                },
                "list": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp list ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp list name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the list."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp task list."
                },
                "project": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp folder or project reference."
                },
                "folder": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp folder reference."
                },
                "space": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp space ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp space name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the space."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp space reference."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name"
              ],
              "description": "A ClickUp task."
            },
            "description": "The ClickUp view tasks."
          },
          "lastPage": {
            "type": "boolean",
            "description": "Whether the ClickUp response is the last page."
          }
        },
        "additionalProperties": false,
        "required": [
          "tasks"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_workspace_custom_fields",
      "service": "clickup",
      "name": "get_workspace_custom_fields",
      "description": "Get the ClickUp custom fields available on a workspace.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "fields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp custom field ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp custom field name."
                },
                "type": {
                  "type": "string",
                  "description": "The ClickUp custom field type."
                },
                "type_config": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp custom field type configuration."
                },
                "date_created": {
                  "type": "string",
                  "description": "The ClickUp custom field creation timestamp."
                },
                "hide_from_guests": {
                  "type": "boolean",
                  "description": "Whether the ClickUp custom field is hidden from guests."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp custom field."
            },
            "description": "The ClickUp workspace custom fields."
          }
        },
        "additionalProperties": false,
        "required": [
          "fields"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.get_workspace_everything_level_views",
      "service": "clickup",
      "name": "get_workspace_everything_level_views",
      "description": "Get the ClickUp everything-level views available on a workspace.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "views": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp view ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp view name."
                },
                "type": {
                  "type": "string",
                  "description": "The ClickUp view type."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp view."
            },
            "description": "The ClickUp everything-level workspace views."
          }
        },
        "additionalProperties": false,
        "required": [
          "views"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.list_folderless_lists",
      "service": "clickup",
      "name": "list_folderless_lists",
      "description": "List the ClickUp folderless lists available in a space.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          },
          "archived": {
            "type": "boolean",
            "description": "Whether to include archived ClickUp folderless lists."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "lists": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp list ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp list name."
                },
                "orderindex": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp list order index."
                    },
                    {
                      "type": "number",
                      "description": "The ClickUp list order index."
                    }
                  ],
                  "description": "The ClickUp list order index."
                },
                "content": {
                  "type": "string",
                  "description": "The ClickUp list content."
                },
                "status": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp list status descriptor."
                },
                "priority": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The ClickUp list priority descriptor."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "assignee": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {
                        "id": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user ID."
                            },
                            {
                              "type": "integer",
                              "description": "The ClickUp user ID."
                            }
                          ],
                          "description": "The ClickUp user ID."
                        },
                        "username": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp username."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "email": {
                          "type": "string",
                          "description": "The ClickUp user email address."
                        },
                        "color": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user color."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "profilePicture": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp profile picture URL."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "initials": {
                          "type": "string",
                          "description": "The ClickUp user initials."
                        },
                        "timezone": {
                          "type": "string",
                          "description": "The ClickUp user timezone."
                        }
                      },
                      "additionalProperties": true,
                      "required": [
                        "id"
                      ],
                      "description": "The ClickUp list assignee."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "task_count": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp list task count."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "due_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp list due date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "start_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp list start date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "folder": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp parent folder."
                },
                "space": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp space ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp space name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the space."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp parent space."
                },
                "archived": {
                  "type": "boolean",
                  "description": "Whether the ClickUp list is archived."
                },
                "override_statuses": {
                  "type": "boolean",
                  "description": "Whether the ClickUp list overrides statuses."
                },
                "permission_level": {
                  "type": "string",
                  "description": "The ClickUp list permission level."
                },
                "statuses": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp status ID."
                      },
                      "status": {
                        "type": "string",
                        "description": "The ClickUp status name."
                      },
                      "type": {
                        "type": "string",
                        "description": "The ClickUp status type."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp status order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp status order index."
                          }
                        ],
                        "description": "The ClickUp status order index."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp status color."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "status",
                      "orderindex",
                      "color"
                    ],
                    "description": "A ClickUp status."
                  },
                  "description": "The ClickUp list statuses."
                },
                "inbound_address": {
                  "type": "string",
                  "description": "The ClickUp inbound email address."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name"
              ],
              "description": "A ClickUp list."
            },
            "description": "The ClickUp folderless lists."
          }
        },
        "additionalProperties": false,
        "required": [
          "lists"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.list_folders",
      "service": "clickup",
      "name": "list_folders",
      "description": "List the ClickUp folders available in a space.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          },
          "archived": {
            "type": "boolean",
            "description": "Whether to include archived ClickUp folders."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "folders": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp folder ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp folder name."
                },
                "orderindex": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp folder order index."
                    },
                    {
                      "type": "number",
                      "description": "The ClickUp folder order index."
                    }
                  ],
                  "description": "The ClickUp folder order index."
                },
                "override_statuses": {
                  "type": "boolean",
                  "description": "Whether the ClickUp folder overrides statuses."
                },
                "hidden": {
                  "type": "boolean",
                  "description": "Whether the ClickUp folder is hidden."
                },
                "task_count": {
                  "type": "string",
                  "description": "The ClickUp folder task count."
                },
                "lists": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "A ClickUp list ID."
                      },
                      {
                        "type": "object",
                        "properties": {},
                        "additionalProperties": true,
                        "description": "A ClickUp list object."
                      }
                    ],
                    "description": "A ClickUp folder list entry."
                  },
                  "description": "The ClickUp lists under the folder."
                },
                "space": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp space ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp space name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the space."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp parent space."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name"
              ],
              "description": "A ClickUp folder."
            },
            "description": "The ClickUp folders."
          }
        },
        "additionalProperties": false,
        "required": [
          "folders"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.list_list_tasks",
      "service": "clickup",
      "name": "list_list_tasks",
      "description": "List the ClickUp tasks in a list with optional filters.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          },
          "page": {
            "type": "integer",
            "description": "The zero-based ClickUp page index."
          },
          "orderBy": {
            "type": "string",
            "enum": [
              "id",
              "created",
              "updated",
              "due_date"
            ],
            "description": "The ClickUp task ordering field."
          },
          "reverse": {
            "type": "boolean",
            "description": "Whether to reverse the ClickUp task ordering."
          },
          "subtasks": {
            "type": "boolean",
            "description": "Whether to include ClickUp subtasks."
          },
          "statuses": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp string value."
            },
            "description": "The ClickUp task statuses to filter by.",
            "minItems": 1
          },
          "includeClosed": {
            "type": "boolean",
            "description": "Whether to include closed ClickUp tasks."
          },
          "assigneeIds": {
            "type": "array",
            "items": {
              "type": "integer",
              "description": "A ClickUp integer value."
            },
            "description": "The ClickUp assignee user IDs to filter by.",
            "minItems": 1
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp string value."
            },
            "description": "The ClickUp tag names to filter by.",
            "minItems": 1
          },
          "dueDateGt": {
            "type": "integer",
            "description": "The minimum ClickUp due date timestamp in milliseconds."
          },
          "dueDateLt": {
            "type": "integer",
            "description": "The maximum ClickUp due date timestamp in milliseconds."
          },
          "dateCreatedGt": {
            "type": "integer",
            "description": "The minimum ClickUp creation timestamp in milliseconds."
          },
          "dateCreatedLt": {
            "type": "integer",
            "description": "The maximum ClickUp creation timestamp in milliseconds."
          },
          "dateUpdatedGt": {
            "type": "integer",
            "description": "The minimum ClickUp update timestamp in milliseconds."
          },
          "dateUpdatedLt": {
            "type": "integer",
            "description": "The maximum ClickUp update timestamp in milliseconds."
          },
          "dateDoneGt": {
            "type": "integer",
            "description": "The minimum ClickUp done timestamp in milliseconds."
          },
          "dateDoneLt": {
            "type": "integer",
            "description": "The maximum ClickUp done timestamp in milliseconds."
          },
          "parentTaskId": {
            "type": "string",
            "description": "The ClickUp parent task ID to filter by."
          },
          "includeMarkdownDescription": {
            "type": "boolean",
            "description": "Whether to request ClickUp Markdown task descriptions."
          },
          "includeTiml": {
            "type": "boolean",
            "description": "Whether to include ClickUp tasks that exist in multiple lists."
          },
          "watchers": {
            "type": "array",
            "items": {
              "type": "integer",
              "description": "A ClickUp integer value."
            },
            "description": "The ClickUp watcher user IDs to filter by.",
            "minItems": 1
          }
        },
        "additionalProperties": false,
        "required": [
          "listId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tasks": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp task ID."
                },
                "custom_id": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp custom task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "custom_item_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "The ClickUp custom item type ID."
                    },
                    {
                      "type": "string",
                      "description": "The ClickUp custom item type ID."
                    },
                    {
                      "type": "null",
                      "description": "The ClickUp custom item type ID is not set."
                    }
                  ],
                  "description": "The ClickUp custom item type ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp task name."
                },
                "text_content": {
                  "type": "string",
                  "description": "The ClickUp plain text task content."
                },
                "description": {
                  "type": "string",
                  "description": "The ClickUp task description."
                },
                "markdown_description": {
                  "type": "string",
                  "description": "The ClickUp Markdown task description."
                },
                "status": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "The ClickUp task status."
                },
                "orderindex": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task order index."
                    },
                    {
                      "type": "number",
                      "description": "The ClickUp task order index."
                    }
                  ],
                  "description": "The ClickUp task order index."
                },
                "date_created": {
                  "type": "string",
                  "description": "The ClickUp task creation timestamp."
                },
                "date_updated": {
                  "type": "string",
                  "description": "The ClickUp task update timestamp."
                },
                "date_closed": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task close timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "date_done": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task done timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "archived": {
                  "type": "boolean",
                  "description": "Whether the ClickUp task is archived."
                },
                "creator": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp task creator."
                },
                "assignees": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A ClickUp user."
                  },
                  "description": "The ClickUp task assignees."
                },
                "watchers": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A ClickUp user."
                  },
                  "description": "The ClickUp task watchers."
                },
                "checklists": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp checklist ID."
                      },
                      "task_id": {
                        "type": "string",
                        "description": "The ClickUp parent task ID."
                      },
                      "name": {
                        "type": "string",
                        "description": "The ClickUp checklist name."
                      },
                      "date_created": {
                        "type": "string",
                        "description": "The ClickUp checklist creation timestamp."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp checklist order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp checklist order index."
                          }
                        ],
                        "description": "The ClickUp checklist order index."
                      },
                      "resolved": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The number of resolved ClickUp checklist items."
                          },
                          {
                            "type": "number",
                            "description": "The number of resolved ClickUp checklist items."
                          }
                        ],
                        "description": "The number of resolved ClickUp checklist items."
                      },
                      "unresolved": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The number of unresolved ClickUp checklist items."
                          },
                          {
                            "type": "number",
                            "description": "The number of unresolved ClickUp checklist items."
                          }
                        ],
                        "description": "The number of unresolved ClickUp checklist items."
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "The ClickUp checklist item ID."
                            },
                            "name": {
                              "type": "string",
                              "description": "The ClickUp checklist item name."
                            },
                            "orderindex": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp checklist item order index."
                                },
                                {
                                  "type": "number",
                                  "description": "The ClickUp checklist item order index."
                                }
                              ],
                              "description": "The ClickUp checklist item order index."
                            },
                            "assignee": {
                              "anyOf": [
                                {
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp user ID."
                                        },
                                        {
                                          "type": "integer",
                                          "description": "The ClickUp user ID."
                                        }
                                      ],
                                      "description": "The ClickUp user ID."
                                    },
                                    "username": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp username."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "email": {
                                      "type": "string",
                                      "description": "The ClickUp user email address."
                                    },
                                    "color": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp user color."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "profilePicture": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp profile picture URL."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "initials": {
                                      "type": "string",
                                      "description": "The ClickUp user initials."
                                    },
                                    "timezone": {
                                      "type": "string",
                                      "description": "The ClickUp user timezone."
                                    }
                                  },
                                  "additionalProperties": true,
                                  "required": [
                                    "id"
                                  ],
                                  "description": "The ClickUp checklist item assignee."
                                },
                                {
                                  "type": "string",
                                  "description": "The ClickUp checklist item assignee ID."
                                },
                                {
                                  "type": "integer",
                                  "description": "The ClickUp checklist item assignee ID."
                                },
                                {
                                  "type": "null",
                                  "description": "The ClickUp checklist item has no assignee."
                                }
                              ],
                              "description": "The ClickUp checklist item assignee."
                            },
                            "resolved": {
                              "type": "boolean",
                              "description": "Whether the ClickUp checklist item is resolved."
                            },
                            "parent": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The parent ClickUp checklist item ID."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "date_created": {
                              "type": "string",
                              "description": "The ClickUp checklist item creation timestamp."
                            },
                            "children": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "description": "A child ClickUp checklist item ID."
                              },
                              "description": "The child ClickUp checklist item IDs."
                            }
                          },
                          "additionalProperties": true,
                          "required": [
                            "id",
                            "name",
                            "orderindex",
                            "resolved",
                            "date_created",
                            "children"
                          ],
                          "description": "A ClickUp checklist item."
                        },
                        "description": "The ClickUp checklist items."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id",
                      "task_id",
                      "name",
                      "orderindex",
                      "resolved",
                      "unresolved",
                      "items"
                    ],
                    "description": "A ClickUp checklist."
                  },
                  "description": "The ClickUp task checklists."
                },
                "tags": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "The ClickUp tag name."
                      },
                      "tag_fg": {
                        "type": "string",
                        "description": "The ClickUp tag foreground color."
                      },
                      "tag_bg": {
                        "type": "string",
                        "description": "The ClickUp tag background color."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "name"
                    ],
                    "description": "A ClickUp task tag."
                  },
                  "description": "The ClickUp task tags."
                },
                "parent": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "top_level_parent": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp top-level parent task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "priority": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "The ClickUp priority ID."
                        },
                        "priority": {
                          "type": "string",
                          "description": "The ClickUp priority name."
                        },
                        "color": {
                          "type": "string",
                          "description": "The ClickUp priority color."
                        },
                        "orderindex": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp priority order index."
                            },
                            {
                              "type": "number",
                              "description": "The ClickUp priority order index."
                            }
                          ],
                          "description": "The ClickUp priority order index."
                        }
                      },
                      "additionalProperties": true,
                      "description": "The ClickUp task priority."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "due_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task due date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "start_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task start date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "points": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task points value."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task points value."
                        }
                      ],
                      "description": "The ClickUp task points value."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "time_estimate": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task time estimate."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task time estimate."
                        }
                      ],
                      "description": "The ClickUp task time estimate."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "time_spent": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task time spent."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task time spent."
                        }
                      ],
                      "description": "The ClickUp task time spent."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "custom_fields": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A ClickUp custom field object."
                  },
                  "description": "The ClickUp custom fields."
                },
                "dependencies": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A ClickUp task dependency object."
                  },
                  "description": "The ClickUp task dependencies."
                },
                "linked_tasks": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A linked ClickUp task object."
                  },
                  "description": "The ClickUp linked tasks."
                },
                "locations": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp resource ID."
                      },
                      "name": {
                        "type": "string",
                        "description": "The ClickUp resource name."
                      },
                      "hidden": {
                        "type": "boolean",
                        "description": "Whether the ClickUp resource is hidden."
                      },
                      "access": {
                        "type": "boolean",
                        "description": "Whether the authenticated user can access the resource."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A compact ClickUp resource reference."
                  },
                  "description": "The ClickUp secondary list locations for the task."
                },
                "team_id": {
                  "type": "string",
                  "description": "The ClickUp workspace ID."
                },
                "url": {
                  "type": "string",
                  "description": "The ClickUp task URL."
                },
                "permission_level": {
                  "type": "string",
                  "description": "The ClickUp task permission level."
                },
                "list": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp list ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp list name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the list."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp task list."
                },
                "project": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp folder or project reference."
                },
                "folder": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp folder reference."
                },
                "space": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp space ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp space name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the space."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp space reference."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name"
              ],
              "description": "A ClickUp task."
            },
            "description": "The ClickUp tasks."
          },
          "lastPage": {
            "type": "boolean",
            "description": "Whether the ClickUp response is the last page."
          }
        },
        "additionalProperties": false,
        "required": [
          "tasks"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.list_lists",
      "service": "clickup",
      "name": "list_lists",
      "description": "List the ClickUp lists available in a folder.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "folderId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder ID."
          },
          "archived": {
            "type": "boolean",
            "description": "Whether to include archived ClickUp lists."
          }
        },
        "additionalProperties": false,
        "required": [
          "folderId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "lists": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp list ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp list name."
                },
                "orderindex": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp list order index."
                    },
                    {
                      "type": "number",
                      "description": "The ClickUp list order index."
                    }
                  ],
                  "description": "The ClickUp list order index."
                },
                "content": {
                  "type": "string",
                  "description": "The ClickUp list content."
                },
                "status": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp list status descriptor."
                },
                "priority": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "The ClickUp list priority descriptor."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "assignee": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {
                        "id": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user ID."
                            },
                            {
                              "type": "integer",
                              "description": "The ClickUp user ID."
                            }
                          ],
                          "description": "The ClickUp user ID."
                        },
                        "username": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp username."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "email": {
                          "type": "string",
                          "description": "The ClickUp user email address."
                        },
                        "color": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user color."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "profilePicture": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp profile picture URL."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "initials": {
                          "type": "string",
                          "description": "The ClickUp user initials."
                        },
                        "timezone": {
                          "type": "string",
                          "description": "The ClickUp user timezone."
                        }
                      },
                      "additionalProperties": true,
                      "required": [
                        "id"
                      ],
                      "description": "The ClickUp list assignee."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "task_count": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp list task count."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "due_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp list due date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "start_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp list start date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "folder": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp parent folder."
                },
                "space": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp space ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp space name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the space."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp parent space."
                },
                "archived": {
                  "type": "boolean",
                  "description": "Whether the ClickUp list is archived."
                },
                "override_statuses": {
                  "type": "boolean",
                  "description": "Whether the ClickUp list overrides statuses."
                },
                "permission_level": {
                  "type": "string",
                  "description": "The ClickUp list permission level."
                },
                "statuses": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp status ID."
                      },
                      "status": {
                        "type": "string",
                        "description": "The ClickUp status name."
                      },
                      "type": {
                        "type": "string",
                        "description": "The ClickUp status type."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp status order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp status order index."
                          }
                        ],
                        "description": "The ClickUp status order index."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp status color."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "status",
                      "orderindex",
                      "color"
                    ],
                    "description": "A ClickUp status."
                  },
                  "description": "The ClickUp list statuses."
                },
                "inbound_address": {
                  "type": "string",
                  "description": "The ClickUp inbound email address."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name"
              ],
              "description": "A ClickUp list."
            },
            "description": "The ClickUp lists."
          }
        },
        "additionalProperties": false,
        "required": [
          "lists"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.list_spaces",
      "service": "clickup",
      "name": "list_spaces",
      "description": "List the ClickUp spaces available in a workspace.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          },
          "archived": {
            "type": "boolean",
            "description": "Whether to include archived ClickUp spaces."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "spaces": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp space ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp space name."
                },
                "private": {
                  "type": "boolean",
                  "description": "Whether the ClickUp space is private."
                },
                "color": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp space color."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "avatar": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp space avatar URL."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "archived": {
                  "type": "boolean",
                  "description": "Whether the ClickUp space is archived."
                },
                "statuses": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp status ID."
                      },
                      "status": {
                        "type": "string",
                        "description": "The ClickUp status name."
                      },
                      "type": {
                        "type": "string",
                        "description": "The ClickUp status type."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp status order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp status order index."
                          }
                        ],
                        "description": "The ClickUp status order index."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp status color."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "status",
                      "orderindex",
                      "color"
                    ],
                    "description": "A ClickUp status."
                  },
                  "description": "The ClickUp space statuses."
                },
                "members": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "user": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp user ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp user ID."
                              }
                            ],
                            "description": "The ClickUp user ID."
                          },
                          "username": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp username."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "email": {
                            "type": "string",
                            "description": "The ClickUp user email address."
                          },
                          "color": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp user color."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "profilePicture": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp profile picture URL."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "initials": {
                            "type": "string",
                            "description": "The ClickUp user initials."
                          },
                          "timezone": {
                            "type": "string",
                            "description": "The ClickUp user timezone."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id"
                        ],
                        "description": "The ClickUp user in the workspace member entry."
                      }
                    },
                    "additionalProperties": true,
                    "description": "A ClickUp workspace member."
                  },
                  "description": "The members visible on the ClickUp space."
                },
                "multiple_assignees": {
                  "type": "boolean",
                  "description": "Whether the ClickUp space allows multiple assignees."
                },
                "features": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The ClickUp space features."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name",
                "private"
              ],
              "description": "A ClickUp space."
            },
            "description": "The ClickUp spaces."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaces"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.list_workspace_tasks",
      "service": "clickup",
      "name": "list_workspace_tasks",
      "description": "List the ClickUp tasks in a workspace with official filter parameters.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          },
          "page": {
            "type": "integer",
            "description": "The zero-based ClickUp page index."
          },
          "orderBy": {
            "type": "string",
            "enum": [
              "id",
              "created",
              "updated",
              "due_date"
            ],
            "description": "The ClickUp task ordering field."
          },
          "reverse": {
            "type": "boolean",
            "description": "Whether to reverse the ClickUp task ordering."
          },
          "subtasks": {
            "type": "boolean",
            "description": "Whether to include ClickUp subtasks."
          },
          "statuses": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp string value."
            },
            "description": "The ClickUp task statuses to filter by.",
            "minItems": 1
          },
          "includeClosed": {
            "type": "boolean",
            "description": "Whether to include closed ClickUp tasks."
          },
          "assigneeIds": {
            "type": "array",
            "items": {
              "type": "integer",
              "description": "A ClickUp integer value."
            },
            "description": "The ClickUp assignee user IDs to filter by.",
            "minItems": 1
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp string value."
            },
            "description": "The ClickUp tag names to filter by.",
            "minItems": 1
          },
          "dueDateGt": {
            "type": "integer",
            "description": "The minimum ClickUp due date timestamp in milliseconds."
          },
          "dueDateLt": {
            "type": "integer",
            "description": "The maximum ClickUp due date timestamp in milliseconds."
          },
          "dateCreatedGt": {
            "type": "integer",
            "description": "The minimum ClickUp creation timestamp in milliseconds."
          },
          "dateCreatedLt": {
            "type": "integer",
            "description": "The maximum ClickUp creation timestamp in milliseconds."
          },
          "dateUpdatedGt": {
            "type": "integer",
            "description": "The minimum ClickUp update timestamp in milliseconds."
          },
          "dateUpdatedLt": {
            "type": "integer",
            "description": "The maximum ClickUp update timestamp in milliseconds."
          },
          "dateDoneGt": {
            "type": "integer",
            "description": "The minimum ClickUp done timestamp in milliseconds."
          },
          "dateDoneLt": {
            "type": "integer",
            "description": "The maximum ClickUp done timestamp in milliseconds."
          },
          "parentTaskId": {
            "type": "string",
            "description": "The ClickUp parent task ID to filter by."
          },
          "includeMarkdownDescription": {
            "type": "boolean",
            "description": "Whether to request ClickUp Markdown task descriptions."
          },
          "spaceIds": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp string value."
            },
            "description": "The ClickUp space IDs to filter by.",
            "minItems": 1
          },
          "folderIds": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp string value."
            },
            "description": "The ClickUp folder IDs to filter by.",
            "minItems": 1
          },
          "listIds": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp string value."
            },
            "description": "The ClickUp list IDs to filter by.",
            "minItems": 1
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tasks": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp task ID."
                },
                "custom_id": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp custom task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "custom_item_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "The ClickUp custom item type ID."
                    },
                    {
                      "type": "string",
                      "description": "The ClickUp custom item type ID."
                    },
                    {
                      "type": "null",
                      "description": "The ClickUp custom item type ID is not set."
                    }
                  ],
                  "description": "The ClickUp custom item type ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp task name."
                },
                "text_content": {
                  "type": "string",
                  "description": "The ClickUp plain text task content."
                },
                "description": {
                  "type": "string",
                  "description": "The ClickUp task description."
                },
                "markdown_description": {
                  "type": "string",
                  "description": "The ClickUp Markdown task description."
                },
                "status": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "The ClickUp task status."
                },
                "orderindex": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task order index."
                    },
                    {
                      "type": "number",
                      "description": "The ClickUp task order index."
                    }
                  ],
                  "description": "The ClickUp task order index."
                },
                "date_created": {
                  "type": "string",
                  "description": "The ClickUp task creation timestamp."
                },
                "date_updated": {
                  "type": "string",
                  "description": "The ClickUp task update timestamp."
                },
                "date_closed": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task close timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "date_done": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task done timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "archived": {
                  "type": "boolean",
                  "description": "Whether the ClickUp task is archived."
                },
                "creator": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp task creator."
                },
                "assignees": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A ClickUp user."
                  },
                  "description": "The ClickUp task assignees."
                },
                "watchers": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A ClickUp user."
                  },
                  "description": "The ClickUp task watchers."
                },
                "checklists": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp checklist ID."
                      },
                      "task_id": {
                        "type": "string",
                        "description": "The ClickUp parent task ID."
                      },
                      "name": {
                        "type": "string",
                        "description": "The ClickUp checklist name."
                      },
                      "date_created": {
                        "type": "string",
                        "description": "The ClickUp checklist creation timestamp."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp checklist order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp checklist order index."
                          }
                        ],
                        "description": "The ClickUp checklist order index."
                      },
                      "resolved": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The number of resolved ClickUp checklist items."
                          },
                          {
                            "type": "number",
                            "description": "The number of resolved ClickUp checklist items."
                          }
                        ],
                        "description": "The number of resolved ClickUp checklist items."
                      },
                      "unresolved": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The number of unresolved ClickUp checklist items."
                          },
                          {
                            "type": "number",
                            "description": "The number of unresolved ClickUp checklist items."
                          }
                        ],
                        "description": "The number of unresolved ClickUp checklist items."
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "The ClickUp checklist item ID."
                            },
                            "name": {
                              "type": "string",
                              "description": "The ClickUp checklist item name."
                            },
                            "orderindex": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp checklist item order index."
                                },
                                {
                                  "type": "number",
                                  "description": "The ClickUp checklist item order index."
                                }
                              ],
                              "description": "The ClickUp checklist item order index."
                            },
                            "assignee": {
                              "anyOf": [
                                {
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp user ID."
                                        },
                                        {
                                          "type": "integer",
                                          "description": "The ClickUp user ID."
                                        }
                                      ],
                                      "description": "The ClickUp user ID."
                                    },
                                    "username": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp username."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "email": {
                                      "type": "string",
                                      "description": "The ClickUp user email address."
                                    },
                                    "color": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp user color."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "profilePicture": {
                                      "anyOf": [
                                        {
                                          "type": "string",
                                          "description": "The ClickUp profile picture URL."
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "initials": {
                                      "type": "string",
                                      "description": "The ClickUp user initials."
                                    },
                                    "timezone": {
                                      "type": "string",
                                      "description": "The ClickUp user timezone."
                                    }
                                  },
                                  "additionalProperties": true,
                                  "required": [
                                    "id"
                                  ],
                                  "description": "The ClickUp checklist item assignee."
                                },
                                {
                                  "type": "string",
                                  "description": "The ClickUp checklist item assignee ID."
                                },
                                {
                                  "type": "integer",
                                  "description": "The ClickUp checklist item assignee ID."
                                },
                                {
                                  "type": "null",
                                  "description": "The ClickUp checklist item has no assignee."
                                }
                              ],
                              "description": "The ClickUp checklist item assignee."
                            },
                            "resolved": {
                              "type": "boolean",
                              "description": "Whether the ClickUp checklist item is resolved."
                            },
                            "parent": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The parent ClickUp checklist item ID."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "date_created": {
                              "type": "string",
                              "description": "The ClickUp checklist item creation timestamp."
                            },
                            "children": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "description": "A child ClickUp checklist item ID."
                              },
                              "description": "The child ClickUp checklist item IDs."
                            }
                          },
                          "additionalProperties": true,
                          "required": [
                            "id",
                            "name",
                            "orderindex",
                            "resolved",
                            "date_created",
                            "children"
                          ],
                          "description": "A ClickUp checklist item."
                        },
                        "description": "The ClickUp checklist items."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id",
                      "task_id",
                      "name",
                      "orderindex",
                      "resolved",
                      "unresolved",
                      "items"
                    ],
                    "description": "A ClickUp checklist."
                  },
                  "description": "The ClickUp task checklists."
                },
                "tags": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "The ClickUp tag name."
                      },
                      "tag_fg": {
                        "type": "string",
                        "description": "The ClickUp tag foreground color."
                      },
                      "tag_bg": {
                        "type": "string",
                        "description": "The ClickUp tag background color."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "name"
                    ],
                    "description": "A ClickUp task tag."
                  },
                  "description": "The ClickUp task tags."
                },
                "parent": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "top_level_parent": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp top-level parent task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "priority": {
                  "anyOf": [
                    {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "The ClickUp priority ID."
                        },
                        "priority": {
                          "type": "string",
                          "description": "The ClickUp priority name."
                        },
                        "color": {
                          "type": "string",
                          "description": "The ClickUp priority color."
                        },
                        "orderindex": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp priority order index."
                            },
                            {
                              "type": "number",
                              "description": "The ClickUp priority order index."
                            }
                          ],
                          "description": "The ClickUp priority order index."
                        }
                      },
                      "additionalProperties": true,
                      "description": "The ClickUp task priority."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "due_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task due date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "start_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp task start date timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "points": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task points value."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task points value."
                        }
                      ],
                      "description": "The ClickUp task points value."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "time_estimate": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task time estimate."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task time estimate."
                        }
                      ],
                      "description": "The ClickUp task time estimate."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "time_spent": {
                  "anyOf": [
                    {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp task time spent."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp task time spent."
                        }
                      ],
                      "description": "The ClickUp task time spent."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "custom_fields": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A ClickUp custom field object."
                  },
                  "description": "The ClickUp custom fields."
                },
                "dependencies": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A ClickUp task dependency object."
                  },
                  "description": "The ClickUp task dependencies."
                },
                "linked_tasks": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "A linked ClickUp task object."
                  },
                  "description": "The ClickUp linked tasks."
                },
                "locations": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp resource ID."
                      },
                      "name": {
                        "type": "string",
                        "description": "The ClickUp resource name."
                      },
                      "hidden": {
                        "type": "boolean",
                        "description": "Whether the ClickUp resource is hidden."
                      },
                      "access": {
                        "type": "boolean",
                        "description": "Whether the authenticated user can access the resource."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "A compact ClickUp resource reference."
                  },
                  "description": "The ClickUp secondary list locations for the task."
                },
                "team_id": {
                  "type": "string",
                  "description": "The ClickUp workspace ID."
                },
                "url": {
                  "type": "string",
                  "description": "The ClickUp task URL."
                },
                "permission_level": {
                  "type": "string",
                  "description": "The ClickUp task permission level."
                },
                "list": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp list ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp list name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the list."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp task list."
                },
                "project": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp folder or project reference."
                },
                "folder": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp folder reference."
                },
                "space": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp space ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp space name."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the space."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp space reference."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name"
              ],
              "description": "A ClickUp task."
            },
            "description": "The ClickUp tasks."
          },
          "lastPage": {
            "type": "boolean",
            "description": "Whether the ClickUp response is the last page."
          }
        },
        "additionalProperties": false,
        "required": [
          "tasks"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.list_workspace_users",
      "service": "clickup",
      "name": "list_workspace_users",
      "description": "List the members visible on a ClickUp workspace.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "members": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "user": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "The ClickUp user in the workspace member entry."
                }
              },
              "additionalProperties": true,
              "description": "A ClickUp workspace member."
            },
            "description": "The ClickUp members visible on the workspace."
          }
        },
        "additionalProperties": false,
        "required": [
          "members"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.list_workspaces",
      "service": "clickup",
      "name": "list_workspaces",
      "description": "List the ClickUp workspaces available to the authenticated user.",
      "requiredScopes": [
        "clickup.read"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "workspaces": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The ClickUp workspace ID."
                },
                "name": {
                  "type": "string",
                  "description": "The ClickUp workspace name."
                },
                "color": {
                  "type": "string",
                  "description": "The ClickUp workspace color."
                },
                "avatar": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The ClickUp workspace avatar URL."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "members": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "user": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp user ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp user ID."
                              }
                            ],
                            "description": "The ClickUp user ID."
                          },
                          "username": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp username."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "email": {
                            "type": "string",
                            "description": "The ClickUp user email address."
                          },
                          "color": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp user color."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "profilePicture": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp profile picture URL."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "initials": {
                            "type": "string",
                            "description": "The ClickUp user initials."
                          },
                          "timezone": {
                            "type": "string",
                            "description": "The ClickUp user timezone."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id"
                        ],
                        "description": "The ClickUp user in the workspace member entry."
                      }
                    },
                    "additionalProperties": true,
                    "description": "A ClickUp workspace member."
                  },
                  "description": "The members visible on the ClickUp workspace."
                }
              },
              "additionalProperties": true,
              "required": [
                "id",
                "name"
              ],
              "description": "A ClickUp workspace."
            },
            "description": "The ClickUp workspaces."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaces"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.move_task_to_home_list",
      "service": "clickup",
      "name": "move_task_to_home_list",
      "description": "Move a ClickUp task to a new home list.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp workspace ID."
          },
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          },
          "moveCustomFields": {
            "type": "boolean",
            "description": "Whether to move ClickUp custom fields to the destination home list."
          },
          "customFieldsToMove": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A ClickUp custom field ID."
            },
            "description": "The specific ClickUp custom field IDs to move.",
            "minItems": 1
          },
          "statusMappings": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "sourceStatus": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The source ClickUp status name."
                },
                "destinationStatus": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The destination ClickUp status name."
                }
              },
              "additionalProperties": false,
              "description": "A ClickUp task move status mapping."
            },
            "description": "The ClickUp status mappings to apply during the move.",
            "minItems": 1
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId",
          "taskId",
          "listId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp task ID."
              },
              "custom_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp custom task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_item_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "string",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "null",
                    "description": "The ClickUp custom item type ID is not set."
                  }
                ],
                "description": "The ClickUp custom item type ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp task name."
              },
              "text_content": {
                "type": "string",
                "description": "The ClickUp plain text task content."
              },
              "description": {
                "type": "string",
                "description": "The ClickUp task description."
              },
              "markdown_description": {
                "type": "string",
                "description": "The ClickUp Markdown task description."
              },
              "status": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp status ID."
                  },
                  "status": {
                    "type": "string",
                    "description": "The ClickUp status name."
                  },
                  "type": {
                    "type": "string",
                    "description": "The ClickUp status type."
                  },
                  "orderindex": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp status order index."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp status order index."
                      }
                    ],
                    "description": "The ClickUp status order index."
                  },
                  "color": {
                    "type": "string",
                    "description": "The ClickUp status color."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "status",
                  "orderindex",
                  "color"
                ],
                "description": "The ClickUp task status."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp task order index."
                  }
                ],
                "description": "The ClickUp task order index."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp task creation timestamp."
              },
              "date_updated": {
                "type": "string",
                "description": "The ClickUp task update timestamp."
              },
              "date_closed": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task close timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "date_done": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task done timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp task is archived."
              },
              "creator": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task creator."
              },
              "assignees": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task assignees."
              },
              "watchers": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task watchers."
              },
              "checklists": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist ID."
                    },
                    "task_id": {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist name."
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist creation timestamp."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist order index."
                        }
                      ],
                      "description": "The ClickUp checklist order index."
                    },
                    "resolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of resolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of resolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of resolved ClickUp checklist items."
                    },
                    "unresolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of unresolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of unresolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of unresolved ClickUp checklist items."
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The ClickUp checklist item ID."
                          },
                          "name": {
                            "type": "string",
                            "description": "The ClickUp checklist item name."
                          },
                          "orderindex": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item order index."
                              },
                              {
                                "type": "number",
                                "description": "The ClickUp checklist item order index."
                              }
                            ],
                            "description": "The ClickUp checklist item order index."
                          },
                          "assignee": {
                            "anyOf": [
                              {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user ID."
                                      },
                                      {
                                        "type": "integer",
                                        "description": "The ClickUp user ID."
                                      }
                                    ],
                                    "description": "The ClickUp user ID."
                                  },
                                  "username": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp username."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "email": {
                                    "type": "string",
                                    "description": "The ClickUp user email address."
                                  },
                                  "color": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user color."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "profilePicture": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp profile picture URL."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "initials": {
                                    "type": "string",
                                    "description": "The ClickUp user initials."
                                  },
                                  "timezone": {
                                    "type": "string",
                                    "description": "The ClickUp user timezone."
                                  }
                                },
                                "additionalProperties": true,
                                "required": [
                                  "id"
                                ],
                                "description": "The ClickUp checklist item assignee."
                              },
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "null",
                                "description": "The ClickUp checklist item has no assignee."
                              }
                            ],
                            "description": "The ClickUp checklist item assignee."
                          },
                          "resolved": {
                            "type": "boolean",
                            "description": "Whether the ClickUp checklist item is resolved."
                          },
                          "parent": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The parent ClickUp checklist item ID."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "date_created": {
                            "type": "string",
                            "description": "The ClickUp checklist item creation timestamp."
                          },
                          "children": {
                            "type": "array",
                            "items": {
                              "type": "string",
                              "description": "A child ClickUp checklist item ID."
                            },
                            "description": "The child ClickUp checklist item IDs."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id",
                          "name",
                          "orderindex",
                          "resolved",
                          "date_created",
                          "children"
                        ],
                        "description": "A ClickUp checklist item."
                      },
                      "description": "The ClickUp checklist items."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "task_id",
                    "name",
                    "orderindex",
                    "resolved",
                    "unresolved",
                    "items"
                  ],
                  "description": "A ClickUp checklist."
                },
                "description": "The ClickUp task checklists."
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The ClickUp tag name."
                    },
                    "tag_fg": {
                      "type": "string",
                      "description": "The ClickUp tag foreground color."
                    },
                    "tag_bg": {
                      "type": "string",
                      "description": "The ClickUp tag background color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "name"
                  ],
                  "description": "A ClickUp task tag."
                },
                "description": "The ClickUp task tags."
              },
              "parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "top_level_parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp top-level parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp priority ID."
                      },
                      "priority": {
                        "type": "string",
                        "description": "The ClickUp priority name."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp priority color."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp priority order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp priority order index."
                          }
                        ],
                        "description": "The ClickUp priority order index."
                      }
                    },
                    "additionalProperties": true,
                    "description": "The ClickUp task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "points": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task points value."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task points value."
                      }
                    ],
                    "description": "The ClickUp task points value."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_estimate": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time estimate."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time estimate."
                      }
                    ],
                    "description": "The ClickUp task time estimate."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_spent": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time spent."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time spent."
                      }
                    ],
                    "description": "The ClickUp task time spent."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_fields": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp custom field object."
                },
                "description": "The ClickUp custom fields."
              },
              "dependencies": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp task dependency object."
                },
                "description": "The ClickUp task dependencies."
              },
              "linked_tasks": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A linked ClickUp task object."
                },
                "description": "The ClickUp linked tasks."
              },
              "locations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A compact ClickUp resource reference."
                },
                "description": "The ClickUp secondary list locations for the task."
              },
              "team_id": {
                "type": "string",
                "description": "The ClickUp workspace ID."
              },
              "url": {
                "type": "string",
                "description": "The ClickUp task URL."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp task permission level."
              },
              "list": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp list ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp list name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the list."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task list."
              },
              "project": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder or project reference."
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder reference."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp space reference."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The ClickUp task after moving to the new home list."
          }
        },
        "additionalProperties": false,
        "required": [
          "task"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.remove_custom_field_value",
      "service": "clickup",
      "name": "remove_custom_field_value",
      "description": "Remove a ClickUp custom field value from a task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "fieldId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp custom field ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "fieldId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "removed": {
            "type": "boolean",
            "description": "Whether the ClickUp custom field value was removed."
          }
        },
        "additionalProperties": false,
        "required": [
          "removed"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.remove_tag_from_task",
      "service": "clickup",
      "name": "remove_tag_from_task",
      "description": "Remove a ClickUp tag from a task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "tagName": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp tag name."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "tagName"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "removed": {
            "type": "boolean",
            "description": "Whether the ClickUp tag was removed from the task."
          }
        },
        "additionalProperties": false,
        "required": [
          "removed"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.remove_task_from_list",
      "service": "clickup",
      "name": "remove_task_from_list",
      "description": "Remove a ClickUp task from an additional list.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          },
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId",
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "removed": {
            "type": "boolean",
            "description": "Whether the ClickUp task was removed from the list."
          }
        },
        "additionalProperties": false,
        "required": [
          "removed"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.set_custom_field_value",
      "service": "clickup",
      "name": "set_custom_field_value",
      "description": "Set a ClickUp custom field value on a task.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "fieldId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp custom field ID."
          },
          "value": {
            "description": "The ClickUp custom field value."
          },
          "valueOptions": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The ClickUp custom field value options."
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId",
          "fieldId",
          "value"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "updated": {
            "type": "boolean",
            "description": "Whether the ClickUp custom field value was updated."
          }
        },
        "additionalProperties": false,
        "required": [
          "updated"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.update_checklist",
      "service": "clickup",
      "name": "update_checklist",
      "description": "Update a ClickUp checklist by checklist ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "checklistId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist ID."
          },
          "name": {
            "type": "string",
            "description": "The ClickUp checklist name."
          },
          "position": {
            "type": "integer",
            "description": "The ClickUp checklist position."
          }
        },
        "additionalProperties": false,
        "required": [
          "checklistId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "updated": {
            "type": "boolean",
            "description": "Whether the ClickUp checklist was updated."
          }
        },
        "additionalProperties": false,
        "required": [
          "updated"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.update_checklist_item",
      "service": "clickup",
      "name": "update_checklist_item",
      "description": "Update a ClickUp checklist item by checklist item ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "checklistId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist ID."
          },
          "checklistItemId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp checklist item ID."
          },
          "name": {
            "type": "string",
            "description": "The ClickUp checklist item name."
          },
          "assignee": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The ClickUp checklist item assignee ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp checklist item assignee user ID."
              },
              {
                "type": "null",
                "description": "Clear the ClickUp checklist item assignee."
              }
            ],
            "description": "The ClickUp checklist item assignee."
          },
          "resolved": {
            "type": "boolean",
            "description": "Whether the ClickUp checklist item is resolved."
          },
          "parent": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The parent ClickUp checklist item ID."
              },
              {
                "type": "null",
                "description": "Clear the parent ClickUp checklist item."
              }
            ],
            "description": "The parent ClickUp checklist item ID."
          }
        },
        "additionalProperties": false,
        "required": [
          "checklistId",
          "checklistItemId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "checklist": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp checklist ID."
              },
              "task_id": {
                "type": "string",
                "description": "The ClickUp parent task ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp checklist name."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp checklist creation timestamp."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp checklist order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp checklist order index."
                  }
                ],
                "description": "The ClickUp checklist order index."
              },
              "resolved": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The number of resolved ClickUp checklist items."
                  },
                  {
                    "type": "number",
                    "description": "The number of resolved ClickUp checklist items."
                  }
                ],
                "description": "The number of resolved ClickUp checklist items."
              },
              "unresolved": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The number of unresolved ClickUp checklist items."
                  },
                  {
                    "type": "number",
                    "description": "The number of unresolved ClickUp checklist items."
                  }
                ],
                "description": "The number of unresolved ClickUp checklist items."
              },
              "items": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist item ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist item name."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist item order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist item order index."
                        }
                      ],
                      "description": "The ClickUp checklist item order index."
                    },
                    "assignee": {
                      "anyOf": [
                        {
                          "type": "object",
                          "properties": {
                            "id": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp user ID."
                                },
                                {
                                  "type": "integer",
                                  "description": "The ClickUp user ID."
                                }
                              ],
                              "description": "The ClickUp user ID."
                            },
                            "username": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp username."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "email": {
                              "type": "string",
                              "description": "The ClickUp user email address."
                            },
                            "color": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp user color."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "profilePicture": {
                              "anyOf": [
                                {
                                  "type": "string",
                                  "description": "The ClickUp profile picture URL."
                                },
                                {
                                  "type": "null"
                                }
                              ]
                            },
                            "initials": {
                              "type": "string",
                              "description": "The ClickUp user initials."
                            },
                            "timezone": {
                              "type": "string",
                              "description": "The ClickUp user timezone."
                            }
                          },
                          "additionalProperties": true,
                          "required": [
                            "id"
                          ],
                          "description": "The ClickUp checklist item assignee."
                        },
                        {
                          "type": "string",
                          "description": "The ClickUp checklist item assignee ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp checklist item assignee ID."
                        },
                        {
                          "type": "null",
                          "description": "The ClickUp checklist item has no assignee."
                        }
                      ],
                      "description": "The ClickUp checklist item assignee."
                    },
                    "resolved": {
                      "type": "boolean",
                      "description": "Whether the ClickUp checklist item is resolved."
                    },
                    "parent": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The parent ClickUp checklist item ID."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist item creation timestamp."
                    },
                    "children": {
                      "type": "array",
                      "items": {
                        "type": "string",
                        "description": "A child ClickUp checklist item ID."
                      },
                      "description": "The child ClickUp checklist item IDs."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "name",
                    "orderindex",
                    "resolved",
                    "date_created",
                    "children"
                  ],
                  "description": "A ClickUp checklist item."
                },
                "description": "The ClickUp checklist items."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "task_id",
              "name",
              "orderindex",
              "resolved",
              "unresolved",
              "items"
            ],
            "description": "The ClickUp checklist after item update."
          }
        },
        "additionalProperties": false,
        "required": [
          "checklist"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.update_comment",
      "service": "clickup",
      "name": "update_comment",
      "description": "Update a ClickUp comment by comment ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "commentId": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The ClickUp comment ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp comment ID."
              }
            ],
            "description": "The ClickUp comment ID."
          },
          "commentText": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp comment text."
          },
          "assignee": {
            "type": "integer",
            "description": "The ClickUp assignee user ID."
          },
          "groupAssignee": {
            "anyOf": [
              {
                "type": "string",
                "description": "The ClickUp group assignee ID."
              },
              {
                "type": "integer",
                "description": "The ClickUp group assignee ID."
              }
            ],
            "description": "The ClickUp group assignee ID."
          },
          "resolved": {
            "type": "boolean",
            "description": "Whether the ClickUp comment is resolved."
          }
        },
        "additionalProperties": false,
        "required": [
          "commentId",
          "commentText"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "comment": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp comment ID."
              },
              "hist_id": {
                "type": "string",
                "description": "The ClickUp comment history ID."
              },
              "date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp comment mutation timestamp."
                  },
                  {
                    "type": "integer",
                    "description": "The ClickUp comment mutation timestamp."
                  }
                ],
                "description": "The ClickUp comment mutation timestamp."
              }
            },
            "additionalProperties": true,
            "description": "The updated ClickUp comment."
          }
        },
        "additionalProperties": false,
        "required": [
          "comment"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.update_folder",
      "service": "clickup",
      "name": "update_folder",
      "description": "Update a ClickUp folder by folder ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "folderId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder ID."
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp folder name."
          }
        },
        "additionalProperties": false,
        "required": [
          "folderId",
          "name"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "folder": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp folder ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp folder name."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp folder order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp folder order index."
                  }
                ],
                "description": "The ClickUp folder order index."
              },
              "override_statuses": {
                "type": "boolean",
                "description": "Whether the ClickUp folder overrides statuses."
              },
              "hidden": {
                "type": "boolean",
                "description": "Whether the ClickUp folder is hidden."
              },
              "task_count": {
                "type": "string",
                "description": "The ClickUp folder task count."
              },
              "lists": {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "A ClickUp list ID."
                    },
                    {
                      "type": "object",
                      "properties": {},
                      "additionalProperties": true,
                      "description": "A ClickUp list object."
                    }
                  ],
                  "description": "A ClickUp folder list entry."
                },
                "description": "The ClickUp lists under the folder."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent space."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The updated ClickUp folder."
          }
        },
        "additionalProperties": false,
        "required": [
          "folder"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.update_list",
      "service": "clickup",
      "name": "update_list",
      "description": "Update a ClickUp list by list ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "listId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp list ID."
          },
          "name": {
            "type": "string",
            "description": "The ClickUp list name."
          },
          "content": {
            "type": "string",
            "description": "The ClickUp list content."
          },
          "markdownContent": {
            "type": "string",
            "description": "The ClickUp Markdown list content."
          },
          "dueDate": {
            "type": "integer",
            "description": "The ClickUp due date timestamp in milliseconds."
          },
          "dueDateTime": {
            "type": "boolean",
            "description": "Whether the ClickUp due date includes time."
          },
          "priority": {
            "anyOf": [
              {
                "type": "integer",
                "const": 1,
                "description": "Urgent ClickUp priority."
              },
              {
                "type": "integer",
                "const": 2,
                "description": "High ClickUp priority."
              },
              {
                "type": "integer",
                "const": 3,
                "description": "Normal ClickUp priority."
              },
              {
                "type": "integer",
                "const": 4,
                "description": "Low ClickUp priority."
              }
            ],
            "description": "The ClickUp list priority. Use 1 for urgent, 2 for high, 3 for normal, and 4 for low."
          },
          "assignee": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The ClickUp assignee user ID."
              },
              {
                "type": "string",
                "const": "none",
                "description": "Clear the ClickUp assignee."
              }
            ],
            "description": "The ClickUp assignee value. Use \"none\" to clear the assignee."
          },
          "status": {
            "type": "string",
            "description": "The ClickUp list status name."
          },
          "unsetStatus": {
            "type": "boolean",
            "description": "Whether to clear the ClickUp list status."
          }
        },
        "additionalProperties": false,
        "required": [
          "listId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "list": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp list ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp list name."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp list order index."
                  }
                ],
                "description": "The ClickUp list order index."
              },
              "content": {
                "type": "string",
                "description": "The ClickUp list content."
              },
              "status": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The ClickUp list status descriptor."
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {},
                    "additionalProperties": true,
                    "description": "The ClickUp list priority descriptor."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "assignee": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user ID."
                          },
                          {
                            "type": "integer",
                            "description": "The ClickUp user ID."
                          }
                        ],
                        "description": "The ClickUp user ID."
                      },
                      "username": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp username."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "email": {
                        "type": "string",
                        "description": "The ClickUp user email address."
                      },
                      "color": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp user color."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "profilePicture": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp profile picture URL."
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "initials": {
                        "type": "string",
                        "description": "The ClickUp user initials."
                      },
                      "timezone": {
                        "type": "string",
                        "description": "The ClickUp user timezone."
                      }
                    },
                    "additionalProperties": true,
                    "required": [
                      "id"
                    ],
                    "description": "The ClickUp list assignee."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "task_count": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list task count."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp list start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent folder."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp parent space."
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp list is archived."
              },
              "override_statuses": {
                "type": "boolean",
                "description": "Whether the ClickUp list overrides statuses."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp list permission level."
              },
              "statuses": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "A ClickUp status."
                },
                "description": "The ClickUp list statuses."
              },
              "inbound_address": {
                "type": "string",
                "description": "The ClickUp inbound email address."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The updated ClickUp list."
          }
        },
        "additionalProperties": false,
        "required": [
          "list"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.update_space",
      "service": "clickup",
      "name": "update_space",
      "description": "Update a ClickUp space by space ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "spaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp space ID."
          },
          "name": {
            "type": "string",
            "description": "The ClickUp space name."
          },
          "color": {
            "type": "string",
            "description": "The ClickUp space color."
          },
          "private": {
            "type": "boolean",
            "description": "Whether the ClickUp space is private."
          },
          "adminCanManage": {
            "type": "boolean",
            "description": "Whether ClickUp admins can manage members in the space."
          },
          "multipleAssignees": {
            "type": "boolean",
            "description": "Whether the ClickUp space allows multiple assignees."
          },
          "features": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The ClickUp space feature configuration."
          }
        },
        "additionalProperties": false,
        "required": [
          "spaceId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "space": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp space ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp space name."
              },
              "private": {
                "type": "boolean",
                "description": "Whether the ClickUp space is private."
              },
              "color": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp space color."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "avatar": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp space avatar URL."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp space is archived."
              },
              "statuses": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp status ID."
                    },
                    "status": {
                      "type": "string",
                      "description": "The ClickUp status name."
                    },
                    "type": {
                      "type": "string",
                      "description": "The ClickUp status type."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp status order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp status order index."
                        }
                      ],
                      "description": "The ClickUp status order index."
                    },
                    "color": {
                      "type": "string",
                      "description": "The ClickUp status color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "status",
                    "orderindex",
                    "color"
                  ],
                  "description": "A ClickUp status."
                },
                "description": "The ClickUp space statuses."
              },
              "members": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "user": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user ID."
                            },
                            {
                              "type": "integer",
                              "description": "The ClickUp user ID."
                            }
                          ],
                          "description": "The ClickUp user ID."
                        },
                        "username": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp username."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "email": {
                          "type": "string",
                          "description": "The ClickUp user email address."
                        },
                        "color": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp user color."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "profilePicture": {
                          "anyOf": [
                            {
                              "type": "string",
                              "description": "The ClickUp profile picture URL."
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "initials": {
                          "type": "string",
                          "description": "The ClickUp user initials."
                        },
                        "timezone": {
                          "type": "string",
                          "description": "The ClickUp user timezone."
                        }
                      },
                      "additionalProperties": true,
                      "required": [
                        "id"
                      ],
                      "description": "The ClickUp user in the workspace member entry."
                    }
                  },
                  "additionalProperties": true,
                  "description": "A ClickUp workspace member."
                },
                "description": "The members visible on the ClickUp space."
              },
              "multiple_assignees": {
                "type": "boolean",
                "description": "Whether the ClickUp space allows multiple assignees."
              },
              "features": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The ClickUp space features."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name",
              "private"
            ],
            "description": "The updated ClickUp space."
          }
        },
        "additionalProperties": false,
        "required": [
          "space"
        ],
        "description": "The output payload for this action."
      }
    },
    {
      "id": "clickup.update_task",
      "service": "clickup",
      "name": "update_task",
      "description": "Update a ClickUp task by task ID.",
      "requiredScopes": [
        "clickup.write"
      ],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "minLength": 1,
            "description": "The ClickUp task ID."
          },
          "name": {
            "type": "string",
            "description": "The ClickUp task name."
          },
          "description": {
            "type": "string",
            "description": "The ClickUp task description. Use \" \" to clear it."
          },
          "markdownContent": {
            "type": "string",
            "description": "The ClickUp task Markdown description."
          },
          "status": {
            "type": "string",
            "description": "The ClickUp task status name."
          },
          "priority": {
            "anyOf": [
              {
                "type": "integer",
                "const": 1,
                "description": "Urgent ClickUp priority."
              },
              {
                "type": "integer",
                "const": 2,
                "description": "High ClickUp priority."
              },
              {
                "type": "integer",
                "const": 3,
                "description": "Normal ClickUp priority."
              },
              {
                "type": "integer",
                "const": 4,
                "description": "Low ClickUp priority."
              }
            ],
            "description": "The ClickUp task priority. Use 1 for urgent, 2 for high, 3 for normal, and 4 for low."
          },
          "dueDate": {
            "type": "integer",
            "description": "The ClickUp due date timestamp in milliseconds."
          },
          "dueDateTime": {
            "type": "boolean",
            "description": "Whether the ClickUp due date includes time."
          },
          "startDate": {
            "type": "integer",
            "description": "The ClickUp start date timestamp in milliseconds."
          },
          "startDateTime": {
            "type": "boolean",
            "description": "Whether the ClickUp start date includes time."
          },
          "archived": {
            "type": "boolean",
            "description": "Whether the ClickUp task is archived."
          },
          "parentTaskId": {
            "type": "string",
            "description": "The ClickUp parent task ID."
          },
          "timeEstimate": {
            "type": "integer",
            "description": "The ClickUp time estimate in milliseconds."
          },
          "points": {
            "type": "number",
            "description": "The ClickUp points value."
          },
          "assigneeIdsToAdd": {
            "type": "array",
            "items": {
              "type": "integer",
              "description": "A ClickUp integer value."
            },
            "description": "The ClickUp assignee user IDs to add.",
            "minItems": 1
          },
          "assigneeIdsToRemove": {
            "type": "array",
            "items": {
              "type": "integer",
              "description": "A ClickUp integer value."
            },
            "description": "The ClickUp assignee user IDs to remove.",
            "minItems": 1
          },
          "customItemId": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The ClickUp custom item type ID."
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "additionalProperties": false,
        "required": [
          "taskId"
        ],
        "description": "The input payload for this action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The ClickUp task ID."
              },
              "custom_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp custom task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_item_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "string",
                    "description": "The ClickUp custom item type ID."
                  },
                  {
                    "type": "null",
                    "description": "The ClickUp custom item type ID is not set."
                  }
                ],
                "description": "The ClickUp custom item type ID."
              },
              "name": {
                "type": "string",
                "description": "The ClickUp task name."
              },
              "text_content": {
                "type": "string",
                "description": "The ClickUp plain text task content."
              },
              "description": {
                "type": "string",
                "description": "The ClickUp task description."
              },
              "markdown_description": {
                "type": "string",
                "description": "The ClickUp Markdown task description."
              },
              "status": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp status ID."
                  },
                  "status": {
                    "type": "string",
                    "description": "The ClickUp status name."
                  },
                  "type": {
                    "type": "string",
                    "description": "The ClickUp status type."
                  },
                  "orderindex": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp status order index."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp status order index."
                      }
                    ],
                    "description": "The ClickUp status order index."
                  },
                  "color": {
                    "type": "string",
                    "description": "The ClickUp status color."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "status",
                  "orderindex",
                  "color"
                ],
                "description": "The ClickUp task status."
              },
              "orderindex": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task order index."
                  },
                  {
                    "type": "number",
                    "description": "The ClickUp task order index."
                  }
                ],
                "description": "The ClickUp task order index."
              },
              "date_created": {
                "type": "string",
                "description": "The ClickUp task creation timestamp."
              },
              "date_updated": {
                "type": "string",
                "description": "The ClickUp task update timestamp."
              },
              "date_closed": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task close timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "date_done": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task done timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "archived": {
                "type": "boolean",
                "description": "Whether the ClickUp task is archived."
              },
              "creator": {
                "type": "object",
                "properties": {
                  "id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user ID."
                      },
                      {
                        "type": "integer",
                        "description": "The ClickUp user ID."
                      }
                    ],
                    "description": "The ClickUp user ID."
                  },
                  "username": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp username."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "email": {
                    "type": "string",
                    "description": "The ClickUp user email address."
                  },
                  "color": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp user color."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "profilePicture": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp profile picture URL."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "initials": {
                    "type": "string",
                    "description": "The ClickUp user initials."
                  },
                  "timezone": {
                    "type": "string",
                    "description": "The ClickUp user timezone."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task creator."
              },
              "assignees": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task assignees."
              },
              "watchers": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user ID."
                        },
                        {
                          "type": "integer",
                          "description": "The ClickUp user ID."
                        }
                      ],
                      "description": "The ClickUp user ID."
                    },
                    "username": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp username."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "email": {
                      "type": "string",
                      "description": "The ClickUp user email address."
                    },
                    "color": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp user color."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "profilePicture": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp profile picture URL."
                        },
                        {
                          "type": "null"
                        }
                      ]
                    },
                    "initials": {
                      "type": "string",
                      "description": "The ClickUp user initials."
                    },
                    "timezone": {
                      "type": "string",
                      "description": "The ClickUp user timezone."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A ClickUp user."
                },
                "description": "The ClickUp task watchers."
              },
              "checklists": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp checklist ID."
                    },
                    "task_id": {
                      "type": "string",
                      "description": "The ClickUp parent task ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp checklist name."
                    },
                    "date_created": {
                      "type": "string",
                      "description": "The ClickUp checklist creation timestamp."
                    },
                    "orderindex": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The ClickUp checklist order index."
                        },
                        {
                          "type": "number",
                          "description": "The ClickUp checklist order index."
                        }
                      ],
                      "description": "The ClickUp checklist order index."
                    },
                    "resolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of resolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of resolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of resolved ClickUp checklist items."
                    },
                    "unresolved": {
                      "anyOf": [
                        {
                          "type": "string",
                          "description": "The number of unresolved ClickUp checklist items."
                        },
                        {
                          "type": "number",
                          "description": "The number of unresolved ClickUp checklist items."
                        }
                      ],
                      "description": "The number of unresolved ClickUp checklist items."
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The ClickUp checklist item ID."
                          },
                          "name": {
                            "type": "string",
                            "description": "The ClickUp checklist item name."
                          },
                          "orderindex": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item order index."
                              },
                              {
                                "type": "number",
                                "description": "The ClickUp checklist item order index."
                              }
                            ],
                            "description": "The ClickUp checklist item order index."
                          },
                          "assignee": {
                            "anyOf": [
                              {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user ID."
                                      },
                                      {
                                        "type": "integer",
                                        "description": "The ClickUp user ID."
                                      }
                                    ],
                                    "description": "The ClickUp user ID."
                                  },
                                  "username": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp username."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "email": {
                                    "type": "string",
                                    "description": "The ClickUp user email address."
                                  },
                                  "color": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp user color."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "profilePicture": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "description": "The ClickUp profile picture URL."
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ]
                                  },
                                  "initials": {
                                    "type": "string",
                                    "description": "The ClickUp user initials."
                                  },
                                  "timezone": {
                                    "type": "string",
                                    "description": "The ClickUp user timezone."
                                  }
                                },
                                "additionalProperties": true,
                                "required": [
                                  "id"
                                ],
                                "description": "The ClickUp checklist item assignee."
                              },
                              {
                                "type": "string",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "integer",
                                "description": "The ClickUp checklist item assignee ID."
                              },
                              {
                                "type": "null",
                                "description": "The ClickUp checklist item has no assignee."
                              }
                            ],
                            "description": "The ClickUp checklist item assignee."
                          },
                          "resolved": {
                            "type": "boolean",
                            "description": "Whether the ClickUp checklist item is resolved."
                          },
                          "parent": {
                            "anyOf": [
                              {
                                "type": "string",
                                "description": "The parent ClickUp checklist item ID."
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "date_created": {
                            "type": "string",
                            "description": "The ClickUp checklist item creation timestamp."
                          },
                          "children": {
                            "type": "array",
                            "items": {
                              "type": "string",
                              "description": "A child ClickUp checklist item ID."
                            },
                            "description": "The child ClickUp checklist item IDs."
                          }
                        },
                        "additionalProperties": true,
                        "required": [
                          "id",
                          "name",
                          "orderindex",
                          "resolved",
                          "date_created",
                          "children"
                        ],
                        "description": "A ClickUp checklist item."
                      },
                      "description": "The ClickUp checklist items."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id",
                    "task_id",
                    "name",
                    "orderindex",
                    "resolved",
                    "unresolved",
                    "items"
                  ],
                  "description": "A ClickUp checklist."
                },
                "description": "The ClickUp task checklists."
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "The ClickUp tag name."
                    },
                    "tag_fg": {
                      "type": "string",
                      "description": "The ClickUp tag foreground color."
                    },
                    "tag_bg": {
                      "type": "string",
                      "description": "The ClickUp tag background color."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "name"
                  ],
                  "description": "A ClickUp task tag."
                },
                "description": "The ClickUp task tags."
              },
              "parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "top_level_parent": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp top-level parent task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "The ClickUp priority ID."
                      },
                      "priority": {
                        "type": "string",
                        "description": "The ClickUp priority name."
                      },
                      "color": {
                        "type": "string",
                        "description": "The ClickUp priority color."
                      },
                      "orderindex": {
                        "anyOf": [
                          {
                            "type": "string",
                            "description": "The ClickUp priority order index."
                          },
                          {
                            "type": "number",
                            "description": "The ClickUp priority order index."
                          }
                        ],
                        "description": "The ClickUp priority order index."
                      }
                    },
                    "additionalProperties": true,
                    "description": "The ClickUp task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task due date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The ClickUp task start date timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "points": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task points value."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task points value."
                      }
                    ],
                    "description": "The ClickUp task points value."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_estimate": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time estimate."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time estimate."
                      }
                    ],
                    "description": "The ClickUp task time estimate."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "time_spent": {
                "anyOf": [
                  {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The ClickUp task time spent."
                      },
                      {
                        "type": "number",
                        "description": "The ClickUp task time spent."
                      }
                    ],
                    "description": "The ClickUp task time spent."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "custom_fields": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp custom field object."
                },
                "description": "The ClickUp custom fields."
              },
              "dependencies": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A ClickUp task dependency object."
                },
                "description": "The ClickUp task dependencies."
              },
              "linked_tasks": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "A linked ClickUp task object."
                },
                "description": "The ClickUp linked tasks."
              },
              "locations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The ClickUp resource ID."
                    },
                    "name": {
                      "type": "string",
                      "description": "The ClickUp resource name."
                    },
                    "hidden": {
                      "type": "boolean",
                      "description": "Whether the ClickUp resource is hidden."
                    },
                    "access": {
                      "type": "boolean",
                      "description": "Whether the authenticated user can access the resource."
                    }
                  },
                  "additionalProperties": true,
                  "required": [
                    "id"
                  ],
                  "description": "A compact ClickUp resource reference."
                },
                "description": "The ClickUp secondary list locations for the task."
              },
              "team_id": {
                "type": "string",
                "description": "The ClickUp workspace ID."
              },
              "url": {
                "type": "string",
                "description": "The ClickUp task URL."
              },
              "permission_level": {
                "type": "string",
                "description": "The ClickUp task permission level."
              },
              "list": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp list ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp list name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the list."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp task list."
              },
              "project": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder or project reference."
              },
              "folder": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp resource ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp resource name."
                  },
                  "hidden": {
                    "type": "boolean",
                    "description": "Whether the ClickUp resource is hidden."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the resource."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp folder reference."
              },
              "space": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "The ClickUp space ID."
                  },
                  "name": {
                    "type": "string",
                    "description": "The ClickUp space name."
                  },
                  "access": {
                    "type": "boolean",
                    "description": "Whether the authenticated user can access the space."
                  }
                },
                "additionalProperties": true,
                "required": [
                  "id"
                ],
                "description": "The ClickUp space reference."
              }
            },
            "additionalProperties": true,
            "required": [
              "id",
              "name"
            ],
            "description": "The updated ClickUp task."
          }
        },
        "additionalProperties": false,
        "required": [
          "task"
        ],
        "description": "The output payload for this action."
      }
    }
  ]
}
