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"
}
}
}资源
此服务器未提供任何资源。
提示词
此服务器未提供任何提示词。
服务器信息
- 许可证
- MIT
- 版本
- 0.8.0
- 星标
- 645
- 最后更新
- 2026年7月9日