ClickUp MCP Server

Productivitystdiov0.8.0
Repository

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.

Connect

Add this configuration to .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>"
      }
    }
  }
}

Tools (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"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
ClickUp Community (@taazkareem)
Repository
https://github.com/taazkareem/clickup-mcp-server
License
MIT
Version
0.8.0
Stars
645
Last Updated
July 9, 2026