Ticktick

TICKTICK_CREATE_PROJECT

Tool to create a new project in TickTick. Use when you need to programmatically add a project after obtaining a valid access token.

Remote ticktick

Other tools also called TICKTICK_CREATE_PROJECT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "TASK",
        "NOTE"
      ],
      "type": "string",
      "title": "Kind",
      "default": null,
      "examples": [
        "TASK"
      ],
      "nullable": true,
      "description": "Optional project kind"
    },
    "name": {
      "type": "string",
      "title": "Name",
      "examples": [
        "My Project"
      ],
      "description": "Name of the new project"
    },
    "color": {
      "type": "string",
      "title": "Color",
      "default": null,
      "examples": [
        "#00C2FF"
      ],
      "nullable": true,
      "description": "Hex color code for the project, e.g., '#F18181'"
    },
    "viewMode": {
      "enum": [
        "list",
        "kanban",
        "timeline"
      ],
      "type": "string",
      "title": "View Mode",
      "default": null,
      "examples": [
        "list"
      ],
      "nullable": true,
      "description": "Optional view mode for the project"
    },
    "sortOrder": {
      "type": "integer",
      "title": "Sort Order",
      "default": null,
      "minimum": 0,
      "examples": [
        0
      ],
      "nullable": true,
      "description": "Optional sort order value of the project"
    }
  }
}