ClickUp MCP Server

Productivitystdiov0.8.0
Repositorio

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.

Conectar

Añade esta configuración a .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>"
      }
    }
  }
}

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

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
ClickUp Community (@taazkareem)
Repositorio
https://github.com/taazkareem/clickup-mcp-server
Licencia
MIT
Versión
0.8.0
Estrellas
645
Última actualización
9 de julio de 2026