You're viewing a demo portfolio

Join the waitlist
PRSM

clickup_create_task

Active

Tool of Clickup

declared in 0.1.0

Create a new task in a ClickUp list. Provide list ID, task name, and optionally priority and assignee. Returns task ID, name, status, and URL.

Parameters schema

{
  "type": "object",
  "examples": [
    {
      "name": "Review project proposal",
      "_apiKey": "your-clickup-api-key",
      "list_id": "123456"
    },
    {
      "name": "Fix login bug",
      "_apiKey": "your-clickup-api-key",
      "list_id": "123456",
      "due_date": 1704067200000,
      "priority": 1,
      "description": "Users unable to reset password"
    }
  ],
  "required": [
    "_apiKey",
    "list_id",
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Task name"
    },
    "_apiKey": {
      "type": "string",
      "description": "ClickUp API token"
    },
    "list_id": {
      "type": "string",
      "description": "List ID to create the task in"
    },
    "due_date": {
      "type": "number",
      "description": "Due date as Unix timestamp in milliseconds"
    },
    "priority": {
      "type": "number",
      "description": "Priority: 1 (urgent), 2 (high), 3 (normal), 4 (low)"
    },
    "description": {
      "type": "string",
      "description": "Task description (markdown supported)"
    }
  }
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

Clickup

https://github.com/pipeworx-io/mcp-clickup

1/7 registries
View full server →
clickup_create_task — Clickup — PRSM MCP