Community MCP server for ClickUp productivity platform. Agents can create and manage tasks, organize lists and folders, handle spaces and workspaces, track goals, log time entries, and manage task dependencies. Useful for teams using ClickUp for comprehensive project and task management.
npx -y @taaztech/mcp-clickup
{
"mcpServers": {
"clickup": {
"env": {
"CLICKUP_API_TOKEN": "your-api-token"
},
"args": [
"-y",
"@taaztech/mcp-clickup"
],
"command": "npx"
}
}
}Create ClickUp task
{
"type": "object",
"required": [
"list_id",
"name"
],
"properties": {
"name": {
"type": "string"
},
"list_id": {
"type": "string"
},
"priority": {
"type": "integer"
}
}
}// Input
{
"name": "Search feature",
"list_id": "900",
"priority": 2
}// Output
{
"id": "abc",
"url": "https://clickup.com/t/abc"
}Get ClickUp tasks with filters
{
"type": "object",
"required": [
"list_id"
],
"properties": {
"list_id": {
"type": "string"
},
"statuses": {
"type": "array",
"items": {
"type": "string"
}
}
}
}// Input
{
"list_id": "900",
"statuses": [
"in progress"
]
}// Output
{
"tasks": [
{
"id": "abc",
"name": "Search feature",
"status": "in progress"
}
]
}Community MCP server for ClickUp productivity platform. Agents can create and manage tasks, organize lists and folders, handle spaces and workspaces, track goals, log time entries, and manage task dependencies. Useful for teams using ClickUp for comprehensive project and task management.
ClickUp provides 2 tools including create_task, get_tasks.
ClickUp offers a free tier with 300 calls per month. For higher usage, paid plans start at €0/month.
You can install ClickUp using the following command: npx -y @taaztech/mcp-clickup. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
ClickUp is listed under the Productivity category in the AgentForge MCP registry.
ClickUp has a current uptime of 99.7% with an average response time of 240ms.
To connect ClickUp, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of ClickUp's tools via the Model Context Protocol.