# ClickUp — Pipedream Connect

> ClickUp is an all-in-one productivity platform that works as an ideal place for teams to come together, brainstorm, plan, and collaborate on everything from process docs to product designs.

- API slug: `clickup` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Productivity
- Website: https://clickup.com
- This page (HTML): https://pipedream.com/apps/clickup
- Tools: 52 actions · 7 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: clickup`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "clickup",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create Chat View Comment:
const result = await mcp.callTool({
  name: "clickup-create-chat-view-comment",
  arguments: {
    workspaceId: "Workspace",
    spaceId: "Space",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a ClickUp endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.clickup.com/api/v2/user

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuY2xpY2t1cC5jb20vYXBpL3YyL3VzZXI?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "clickup-create-chat-view-comment",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    clickup: { authProvisionId: "apn_xxxxxxx" },
    workspaceId: "Workspace",
    spaceId: "Space",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (52)

### `clickup-create-chat-view-comment` — Create Chat View Comment (Write)

Creates a chat view comment. See the documentation in Comments / Create Chat View Comment section.

Full schema: https://pipedream.com/apps/clickup/actions/create-chat-view-comment.md

### `clickup-create-checklist` — Create Checklist (Write)

Creates a new checklist in a task. See the documentation in Checklists / Create Checklist section.

Full schema: https://pipedream.com/apps/clickup/actions/create-checklist.md

### `clickup-create-checklist-item` — Create Checklist Item (Write)

Creates a new item in a checklist. See the documentation in Checklists / Create Checklist Item section.

Full schema: https://pipedream.com/apps/clickup/actions/create-checklist-item.md

### `clickup-create-folder` — Create Folder (Write)

Creates a new folder. See the documentation in Folders / Create Folder section.

Full schema: https://pipedream.com/apps/clickup/actions/create-folder.md

### `clickup-create-list` — Create List (Write)

Creates a new list. See the documentation in Lists / Create List section.

Full schema: https://pipedream.com/apps/clickup/actions/create-list.md

### `clickup-create-list-comment` — Create List Comment (Write)

Creates a list comment. See the documentation in Comments / Create List Comment section.

Full schema: https://pipedream.com/apps/clickup/actions/create-list-comment.md

### `clickup-create-space` — Create Space (Write)

Creates a new space. See the documentation in Spaces / Create Space section.

Full schema: https://pipedream.com/apps/clickup/actions/create-space.md

### `clickup-create-task` — Create Task (Write)

Creates a new task. See the documentation in Tasks / Create Task section.

Full schema: https://pipedream.com/apps/clickup/actions/create-task.md

### `clickup-create-task-comment` — Create Task Comment (Write)

Creates a task comment. See the documentation in Comments / Create Task Comment section.

Full schema: https://pipedream.com/apps/clickup/actions/create-task-comment.md

### `clickup-create-task-from-template` — Create Task From Template (Write)

Creates a new task from a template. See the documentation in Task Templates / Create Task From Template section.

Full schema: https://pipedream.com/apps/clickup/actions/create-task-from-template.md

### `clickup-create-threaded-comment` — Create Threaded Comment (Write)

Creates a threaded comment. See the documentation in Comments / Create Threaded Comment section.

Full schema: https://pipedream.com/apps/clickup/actions/create-threaded-comment.md

### `clickup-create-time-entry` — Create Time Entry (Write)

Create a new time entry. See the documentation

Full schema: https://pipedream.com/apps/clickup/actions/create-time-entry.md

### `clickup-create-view-comment` — Create View Comment (Write)

Creates a view comment. See the documentation in Comments / Create Chat View Comment section.

Full schema: https://pipedream.com/apps/clickup/actions/create-view-comment.md

### `clickup-delete-checklist` — Delete Checklist (Write)

Deletes a checklist in a task. See the documentation in Checklists / Delete Checklist section.

Full schema: https://pipedream.com/apps/clickup/actions/delete-checklist.md

### `clickup-delete-checklist-item` — Delete Checklist Item (Write)

Deletes item in a checklist. See the documentation in Checklists / Delete Checklist Item section.

Full schema: https://pipedream.com/apps/clickup/actions/delete-checklist-item.md

### `clickup-delete-comment` — Delete Comment (Write)

Deletes a comment. See the documentation in Comments / Deleet Comment section.

Full schema: https://pipedream.com/apps/clickup/actions/delete-comment.md

### `clickup-delete-folder` — Delete Folder (Write)

Delete a folder. See the documentation in Folders / Delete Folder section.

Full schema: https://pipedream.com/apps/clickup/actions/delete-folder.md

### `clickup-delete-list` — Delete List (Write)

Delete a list. See the documentation in Lists / Delete List section.

Full schema: https://pipedream.com/apps/clickup/actions/delete-list.md

### `clickup-delete-space` — Delete Space (Write)

Delete a space. See the documentation in Spaces / Delete Space section.

Full schema: https://pipedream.com/apps/clickup/actions/delete-space.md

### `clickup-delete-task` — Delete Task (Write)

Delete a task. See the documentation in Tasks / Delete Task section.

Full schema: https://pipedream.com/apps/clickup/actions/delete-task.md

### `clickup-get-custom-fields` — Get Custom Fields (Read-only)

Get a list of custom fields. See the documentation in Custom Fields / Get Accessible Custom Fields section.

Full schema: https://pipedream.com/apps/clickup/actions/get-custom-fields.md

### `clickup-get-folder` — Get Folder (Read-only)

Get a folder in a workplace. See the documentation in Folders / Get Folder section.

Full schema: https://pipedream.com/apps/clickup/actions/get-folder.md

### `clickup-get-folder-views` — Get Folder Views (Read-only)

Get all views of a folder. See the documentation in Views / Get Folder Views section.

Full schema: https://pipedream.com/apps/clickup/actions/get-folder-views.md

### `clickup-get-folders` — Get Folders (Read-only)

Get a list of folders in a workplace. See the documentation in Folders / Get Folders section.

Full schema: https://pipedream.com/apps/clickup/actions/get-folders.md

### `clickup-get-list` — Get List (Read-only)

Get a list. See the documentation in Lists / Get List section.

Full schema: https://pipedream.com/apps/clickup/actions/get-list.md

### `clickup-get-list-comments` — Get List Comments (Read-only)

Get a list comments. See the documentation in Comments / Get List Comments section.

Full schema: https://pipedream.com/apps/clickup/actions/get-list-comments.md

### `clickup-get-list-views` — Get List Views (Read-only)

Get all views of a list. See the documentation in Views / Get List Views section.

Full schema: https://pipedream.com/apps/clickup/actions/get-list-views.md

### `clickup-get-lists` — Get Lists (Read-only)

Get a list of lists. See the documentation in Lists / Get Lists section.

Full schema: https://pipedream.com/apps/clickup/actions/get-lists.md

### `clickup-get-space` — Get Space (Read-only)

Get a space in a workplace. See the documentation in Spaces / Get Space section.

Full schema: https://pipedream.com/apps/clickup/actions/get-space.md

### `clickup-get-space-views` — Get Space Views (Read-only)

Get all views of a space. See the documentation in Views / Get Space Views section.

Full schema: https://pipedream.com/apps/clickup/actions/get-space-views.md

### `clickup-get-spaces` — Get Spaces (Read-only)

Get a list of spaces in a workplace. See the documentation in Spaces / Get Spaces section.

Full schema: https://pipedream.com/apps/clickup/actions/get-spaces.md

### `clickup-get-task` — Get Task (Read-only)

Get a task. See the documentation in Tasks / Get Task section.

Full schema: https://pipedream.com/apps/clickup/actions/get-task.md

### `clickup-get-task-comments` — Get Task Comments (Read-only)

Get a task comments. See the documentation in Comments / Get Task Comments section.

Full schema: https://pipedream.com/apps/clickup/actions/get-task-comments.md

### `clickup-get-task-templates` — Get Task Templates (Read-only)

Get a list of templates. See the documentation in Task Templates / Get Task Templates section.

Full schema: https://pipedream.com/apps/clickup/actions/get-task-templates.md

### `clickup-get-tasks` — Get Tasks (Read-only)

Get a list of tasks. See the documentation in Tasks / Get Tasks section.

Full schema: https://pipedream.com/apps/clickup/actions/get-tasks.md

### `clickup-get-team-views` — Get Team Views (Read-only)

Get all views of a team. See the documentation in Views / Get Team Views section.

Full schema: https://pipedream.com/apps/clickup/actions/get-team-views.md

### `clickup-get-view` — Get View (Read-only)

Get a view. See the documentation in Views / Get View section.

Full schema: https://pipedream.com/apps/clickup/actions/get-view.md

### `clickup-get-view-comments` — Get View Comments (Read-only)

Get a view comments. See the documentation in Comments / Get Chat View Comments section.

Full schema: https://pipedream.com/apps/clickup/actions/get-view-comments.md

### `clickup-get-view-tasks` — Get View Tasks (Read-only)

Get all tasks of a view. See the documentation in Views / Get View Tasks section.

Full schema: https://pipedream.com/apps/clickup/actions/get-view-tasks.md

### `clickup-list-authorized-team-id-options` — List Authorized Team Options (Read-only)

Retrieves available options for the Authorized Team field.

Full schema: https://pipedream.com/apps/clickup/actions/list-authorized-team-id-options.md

### `clickup-list-workspaces-options` — List Workspace Options (Read-only)

Retrieves available options for the Workspace field.

Full schema: https://pipedream.com/apps/clickup/actions/list-workspaces-options.md

### `clickup-remove-task-custom-field` — Remove Task Custom Field (Write)

Remove custom field from a task. See the documentation in Custom Fields / Remove Custom Field Value section.

Full schema: https://pipedream.com/apps/clickup/actions/remove-task-custom-field.md

### `clickup-start-time-entry` — Start Time Entry (Write)

Start time entry. See the documentation

Full schema: https://pipedream.com/apps/clickup/actions/start-time-entry.md

### `clickup-stop-time-entry` — Stop Time Entry (Write)

Stop time entry. See the documentation

Full schema: https://pipedream.com/apps/clickup/actions/stop-time-entry.md

### `clickup-update-checklist` — Update Checklist (Write)

Updates a checklist in a task. See the documentation in Checklists / Edit Checklist section.

Full schema: https://pipedream.com/apps/clickup/actions/update-checklist.md

### `clickup-update-checklist-item` — Update Checklist Item (Write)

Updates item in a checklist. See the documentation in Checklists / Edit Checklist Item section.

Full schema: https://pipedream.com/apps/clickup/actions/update-checklist-item.md

### `clickup-update-comment` — Update Comment (Write)

Updates a comment. See the documentation in Comments / Update Comment section.

Full schema: https://pipedream.com/apps/clickup/actions/update-comment.md

### `clickup-update-folder` — Update Folder (Write)

Update a folder. See the documentation in Folders / Update Folder section.

Full schema: https://pipedream.com/apps/clickup/actions/update-folder.md

### `clickup-update-list` — Update List (Write)

Update a list. See the documentation in Lists / Update List section.

Full schema: https://pipedream.com/apps/clickup/actions/update-list.md

### `clickup-update-space` — Update Space (Write)

Update a space. See the documentation in Spaces / Update Space section.

Full schema: https://pipedream.com/apps/clickup/actions/update-space.md

### `clickup-update-task` — Update Task (Write)

Update a task. See the documentation in Tasks / Update Task section.

Full schema: https://pipedream.com/apps/clickup/actions/update-task.md

### `clickup-update-task-custom-field` — Update Task Custom Field (Write)

Update custom field value of a task. See the documentation in Custom Fields / Set Custom Field Value section.

Full schema: https://pipedream.com/apps/clickup/actions/update-task-custom-field.md

## Triggers (7)

### `clickup-new-folder` — New Folder (Instant) (Instant)

Emit new event when a new folder is created

Full schema: https://pipedream.com/apps/clickup/triggers/new-folder.md

### `clickup-new-list` — New List (Instant) (Instant)

Emit new event when a new list is created

Full schema: https://pipedream.com/apps/clickup/triggers/new-list.md

### `clickup-new-task` — New Task (Instant) (Instant)

Emit new event when a new task is created

Full schema: https://pipedream.com/apps/clickup/triggers/new-task.md

### `clickup-new-task-advanced` — New Task Advanced (Instant) (Instant)

Emit new event when a new task is created matching the filter

Full schema: https://pipedream.com/apps/clickup/triggers/new-task-advanced.md

### `clickup-new-task-comment` — New Task Comment (Instant) (Instant)

Emit new event when a new task comment is posted

Full schema: https://pipedream.com/apps/clickup/triggers/new-task-comment.md

### `clickup-new-task-comment-updated` — New Task Comment Updated (Instant) (Instant)

Emit new event when a new task comment is updated

Full schema: https://pipedream.com/apps/clickup/triggers/new-task-comment-updated.md

### `clickup-updated-task` — New Updated Task (Instant) (Instant)

Emit new event when a new task is updated

Full schema: https://pipedream.com/apps/clickup/triggers/updated-task.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
