ClickUp MCP Server

Productivitystdiov0.8.0
Репозиторий

MCP server for the ClickUp project management platform. Enables AI agents to create and update tasks, browse spaces, folders, and lists, and manage task status and assignees, bringing ClickUp work management into AI-powered tools.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

{
  "mcpServers": {
    "clickup": {
      "command": "npx",
      "args": [
        "-y",
        "@taazkareem/clickup-mcp-server"
      ],
      "env": {
        "CLICKUP_API_TOKEN": "<YOUR_CLICKUP_API_TOKEN>",
        "CLICKUP_TEAM_ID": "<YOUR_CLICKUP_TEAM_ID>"
      }
    }
  }
}

Инструменты (2)

create_task

Create a task in a ClickUp list with name, description, assignees, and status.

{
  "type": "object",
  "required": [
    "list_id",
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Task name"
    },
    "list_id": {
      "type": "string",
      "description": "ID of the list to create the task in"
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "User IDs to assign"
    },
    "description": {
      "type": "string",
      "description": "Task description in Markdown"
    }
  }
}

search_tasks

Search tasks across a ClickUp workspace by query, status, or assignee.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Text to search for"
    },
    "status": {
      "type": "string",
      "description": "Filter by task status"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
ClickUp Community (@taazkareem)
Репозиторий
https://github.com/taazkareem/clickup-mcp-server
Лицензия
MIT
Версия
0.8.0
Звёзды
645
Последнее обновление
9 июля 2026 г.