Clickup Mcp Server avatar
Clickup Mcp Server

Pricing

from $0.10 / 1,000 results

Go to Apify Store
Clickup Mcp Server

Clickup Mcp Server

Connect AI assistants to ClickUp via MCP. 20 tools for tasks, spaces, folders, lists, views, docs. Works with Claude, ChatGPT, n8n workflows

Pricing

from $0.10 / 1,000 results

Rating

0.0

(0)

Developer

Piotr Kaplon

Piotr Kaplon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a month ago

Last modified

Share

Connect AI assistants to your ClickUp workspace using the Model Context Protocol (MCP). This actor enables Claude, ChatGPT, and other AI tools to manage tasks, spaces, folders, lists, views, and docs through 20 powerful operations.

Why Use This Actor?

  • AI-Ready: Works with Claude Desktop, ChatGPT, and any MCP-compatible AI
  • Complete Task Management: Create, update, delete, and organize tasks
  • Workspace Control: Manage spaces, folders, lists, and views
  • Document Support: Search and create ClickUp Docs
  • Custom Fields: Read and set custom field values
  • No Code Required: Just provide your ClickUp API token

Available Operations (20 Tools)

Workspace & Organization

ToolDescription
get_teamsList all workspaces you have access to
get_spacesGet spaces within a workspace
create_spaceCreate a new space with features enabled
get_foldersList folders in a space
create_folderCreate a new folder
get_listsGet lists from folder or space
create_listCreate a new list

Task Management

ToolDescription
get_tasksGet all tasks from a list
get_taskGet a single task by ID
create_taskCreate a new task with full options
update_taskUpdate task properties
delete_taskDelete a task

Views

ToolDescription
get_viewsList views for team/space/folder/list
create_viewCreate list, board, calendar, or gantt view
get_view_tasksGet tasks from a specific view

Custom Fields

ToolDescription
get_custom_fieldsList custom fields for a list
set_custom_fieldSet custom field value on a task

Documents

ToolDescription
search_docsSearch workspace documentation
create_docCreate a new document
get_doc_pagesList pages in a document

Quick Start

1. Get Your ClickUp API Token

  1. Open ClickUp
  2. Go to Settings (bottom left)
  3. Click Apps
  4. Find API Token and click Generate
  5. Copy your personal API token

2. Run in Batch Mode

{
"clickupApiKey": "pk_XXXXXXXXX",
"mode": "batch",
"operation": "get_teams"
}

3. Get Your Team ID

Run get_teams first to find your Workspace/Team ID, then use it for other operations.

Usage Examples

List All Workspaces

{
"clickupApiKey": "pk_XXXXXXXXX",
"operation": "get_teams"
}

Get Spaces in a Workspace

{
"clickupApiKey": "pk_XXXXXXXXX",
"operation": "get_spaces",
"teamId": "1234567"
}

Create a Task

{
"clickupApiKey": "pk_XXXXXXXXX",
"operation": "create_task",
"listId": "12345678",
"name": "New feature implementation",
"description": "Implement the new dashboard feature",
"status": "to do",
"priority": 2,
"dueDate": "2026-01-15",
"tags": ["feature", "frontend"]
}

Update a Task

{
"clickupApiKey": "pk_XXXXXXXXX",
"operation": "update_task",
"taskId": "abc123",
"status": "in progress",
"priority": 1
}

Create a Space

{
"clickupApiKey": "pk_XXXXXXXXX",
"operation": "create_space",
"teamId": "1234567",
"name": "New Project Space"
}

Search Documents

{
"clickupApiKey": "pk_XXXXXXXXX",
"operation": "search_docs",
"teamId": "1234567",
"searchQuery": "API documentation"
}

Input Reference

ParameterTypeRequiredDescription
clickupApiKeystringYesYour ClickUp Personal API Token
modestringNobatch (default) or standby
operationstringNoOperation to perform
teamIdstringNoWorkspace/Team ID
spaceIdstringNoSpace ID
folderIdstringNoFolder ID
listIdstringNoList ID
taskIdstringNoTask ID
viewIdstringNoView ID
docIdstringNoDocument ID
namestringNoName for new items
descriptionstringNoDescription text
statusstringNoTask status
priorityintegerNoPriority (1-4)
assigneesarrayNoUser IDs to assign
dueDatestringNoDue date (ISO or timestamp)
tagsarrayNoTag names
customFieldIdstringNoCustom field ID
customFieldValuestringNoValue for custom field
searchQuerystringNoSearch query for docs
viewTypestringNoView type (list/board/calendar/gantt)

Output

Results are stored in the dataset:

{
"operation": "create_task",
"id": "abc123xyz",
"name": "New feature implementation",
"status": { "status": "to do", "color": "#d3d3d3" },
"priority": { "priority": "high", "color": "#ffcc00" }
}

Use Cases

  • AI Task Creation: Let Claude create and organize tasks from conversations
  • Automated Reporting: Generate task reports and summaries
  • Workflow Automation: Integrate with n8n, Make, or Zapier
  • Project Setup: Quickly create spaces, folders, and lists
  • Status Updates: Update task statuses via natural language

Pricing

This actor uses Apify platform resources:

  • Batch operations: ~$0.001 per run
  • Standby mode: Billed per compute unit while active

Attribution

Based on clickup-mcp-server by Nazruden, licensed under MIT.

Support

License

MIT License - see LICENSE for details.