ClickUp MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with ClickUp MCP or direct API to search tasks, update task status, create docs, and log time through natural language.

ClickUp MCP logoClickUp MCP
Dcr Oauth

ClickUp MCP is ClickUp's integration exposing workspace tasks, lists, docs, and time-tracking. It centralizes project data so AI agents can automate workflows and speed up collaboration.

56 Tools

Try ClickUp MCP now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
ClickUp MCP
Try asking
TOOLS

Supported Tools

Every ClickUp MCP action and event your agent gets out of the box.

Clickup add tag to task

Add existing tag to task.

Clickup add task dependency

Set a directional dependency where one task blocks the other.

Clickup add task link

Link two tasks together.

Clickup add task to list

Add a task to an additional list (keeps current home list).

Clickup add time entry

Add a manual time entry to a task.

Clickup attach task file

Attach file to task.

Clickup create comment

Create a comment or threaded reply on a task, list, or view.

Clickup create document

Create a document in a ClickUp space, folder, or list.

Clickup create document page

Create a new page in a ClickUp document.

Clickup create folder

Create folder in ClickUp space.

Clickup create list

Create a list in a ClickUp space.

Clickup create list in folder

Create a list in a ClickUp folder.

Clickup create reminder

Create a personal reminder in your ClickUp workspace.

Clickup create task

Create a task in a ClickUp list.

Clickup create task comment

[DEPRECATED → clickup_create_comment] Legacy name for creating a task comment, kept for clients with stale tool listings.

Clickup delete comment

Delete a comment by comment_id.

Clickup delete task

Delete a task by task_id (supports custom IDs like 'DEV-1234').

Clickup download task attachment

Download a ClickUp task attachment (get attachment IDs from clickup_get_task with include: ["attachments"]).

Clickup filter tasks

Retrieve tasks with combined filters (tags, lists, folders, spaces, statuses, assignees, due date range, completion date range).

Clickup find member by name

Get a member in the ClickUp workspace by name or email.

Clickup get bulk tasks time in status

Get the time multiple tasks have spent in each status (bulk operation, up to 100 tasks).

Clickup get chat channel messages

Get messages for a chat channel.

Clickup get chat channels

List chat channels in the workspace with pagination support.

Clickup get chat message replies

Get threaded replies for a chat message by message_id.

Clickup get current time entry

Get the currently running time entry, if any.

Clickup get custom fields

Get custom field definitions at any hierarchy level (list, folder, space, or workspace).

Clickup get document pages

Get the full content of specific pages by page ID.

Clickup get folder

Get folder details by folder_id or folder_name (+ space info).

Clickup get list

Get list details by list_id or list_name.

Clickup get task

Retrieve a ClickUp task by ID (supports custom IDs like 'DEV-1234').

Clickup get task comments

Get task comments with reply_count per comment.

Clickup get task time in status

Get the time a task has spent in each status.

Clickup get threaded comments

Get threaded replies for a comment by comment_id.

Clickup get time entries

Get time entries with optional filtering by task, date range, assignee, and billable status.

Clickup get workspace hierarchy

Get workspace hierarchy (spaces, folders, lists) with pagination and depth control.

Clickup get workspace members

List all members in the workspace.

Clickup list document pages

List page names and structure of a document (no content).

Clickup merge tasks

Merge one or more source tasks into a target task.

Clickup move task

Move a task to a new home list.

Clickup remove tag from task

Remove tag from task.

Clickup remove task dependency

Remove a dependency between two tasks.

Clickup remove task from list

Remove a task from an additional list (cannot remove from home list).

Clickup remove task link

Remove a link between two tasks.

Clickup request attachment upload

Get short-lived, structured upload details (upload URL, ticket, HTTP method, and multipart field name) to attach a LOCAL file (any size) to a task; follow the returned instructions to upload it with a native HTTP client.

Clickup resolve assignees

Convert names, emails, or "me" to numeric ClickUp user IDs.

Clickup search

Search across all workspace content (tasks, docs, dashboards, attachments, whiteboards, chats, forms).

Clickup search reminders

Search and list your reminders.

Clickup send chat message

Send a message or threaded reply to a chat channel.

Clickup start time tracking

Start time tracking on a task.

Clickup stop time tracking

Stop the currently running time tracker.

Clickup update comment

Edit an existing comment in place by comment_id.

Clickup update document page

Update a page in a ClickUp document.

Clickup update folder

Update a ClickUp folder.

Clickup update list

Update a ClickUp list.

Clickup update reminder

Update a reminder by reminder_id.

Clickup update task

Update task properties.

SETUP GUIDE

Connect ClickUp MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for ClickUp MCP
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect ClickUp MCP API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute ClickUp MCP Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute ClickUp MCP actions with your Agent

Why Use Composio?

AI Native ClickUp MCP Integration

  • Supports both ClickUp MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your ClickUp MCP data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke ClickUp MCP access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access ClickUp MCP
  • Scoped, least privilege access to ClickUp MCP resources
  • Full audit trail of agent actions to support review and compliance
FRAMEWORKS

Use ClickUp MCP with any AI Agent Framework

Choose a Framework you want to connect ClickUp MCP with

FAQ

Frequently asked questions

Yes, ClickUp MCP requires you to configure your own Dcr Oauth credentials. Once set up, Composio handles secure credential storage and management for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with ClickUp MCP.It takes 30 seconds.

Managed auth, hosted MCP servers, and every ClickUp MCP tool your agent needs.Free to start.

Start building