Access ClickUp via the ClickUp API with managed API key authentication. Manage tasks, lists, spaces, folders, comments, goals, and workspace data from chat.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure ClickUp API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect ClickUp |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect ClickUp |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ ClickUp API │
│ (User Chat) │ │ (API Key) │ │ (Tasks) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│3. Connect ClickUp │ │
│ │ 4. Secure Proxy │
│ │ 5. API Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ ClickUp │
│ File │ │ Auth │ │ Workspace│
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for ClickUp again."
# List integrations
clawlink_list_integrations
# List ClickUp tools
clawlink_list_tools --integration clickup
# Search for a specific tool
clawlink_search_tools --query "task" --integration clickup
All ClickUp tool calls are authenticated automatically by ClawLink using the user's connected ClickUp API credentials.
No API key is required in chat. ClawLink stores the API key securely and injects it into every ClickUp API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for clickup in the list.
clawlink_list_tools --integration clickup
Response: Returns the live tool catalog for ClickUp.
If ClickUp tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration clickupclawlink_list_integrations to confirm ClickUp is connected.clawlink_list_tools --integration clickup to see the live catalog.clawlink_search_tools with a short query and integration clickup.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: List tasks → Get details → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute update │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
clickup_get_spaces | List all spaces in a workspace | Read |
clickup_get_space | Get space details | Read |
clickup_create_space | Create a new space | Write |
clickup_delete_space | Delete a space | Write |
clickup_get_folders | List folders in a space | Read |
clickup_create_folder | Create a folder | Write |
clickup_get_lists | List lists in a folder | Read |
clickup_create_list | Create a list | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
clickup_get_tasks | List tasks in a list | Read |
clickup_get_task | Get task details by ID | Read |
clickup_create_task | Create a new task | Write |
clickup_update_task | Update a task | Write |
clickup_delete_task | Delete a task | Write |
clickup_get_filtered_team_tasks | Get filtered tasks from workspace | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
clickup_get_task_comments | Get comments on a task | Read |
clickup_create_task_comment | Add a comment to a task | Write |
clickup_create_threaded_comment | Create a threaded reply | Write |
clickup_delete_comment | Delete a comment | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
clickup_get_goals | List goals in workspace | Read |
clickup_get_goal | Get goal details | Read |
clickup_create_goal | Create a new goal | Write |
clickup_delete_goal | Delete a goal | Write |
clickup_create_key_result | Create a key result for a goal | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
clickup_get_list_views | List views for a list | Read |
clickup_create_list_view | Create a view | Write |
clickup_get_task_templates | Get task templates | Read |
clickup_create_task_from_template | Create task from template | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
clickup_add_tag_to_task | Add a tag to a task | Write |
clickup_add_dependency | Add task dependency | Write |
clickup_get_accessible_custom_fields | Get custom fields for a list | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
clickup_get_chat_messages | Get messages from a chat channel | Read |
clickup_create_chat_message | Send a chat message | Write |
clickup_create_direct_message_channel | Create a DM channel | Write |
clawlink_call_tool --tool "clickup_get_tasks" \
--params '{
"list_id": "123456"
}'
clawlink_call_tool --tool "clickup_create_task" \
--params '{
"name": "New Feature Implementation",
"list_id": "123456",
"priority": 3,
"due_date": 1705310400000
}'
clawlink_call_tool --tool "clickup_get_task" \
--params '{
"task_id": "ABC123"
}'
clawlink_call_tool --tool "clickup_create_task_comment" \
--params '{
"task_id": "ABC123",
"comment_text": "This is blocked by the upstream dependency"
}'
custom_task_ids=true and provide team_id when using custom IDs.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration clickup. |
| Missing connection | ClickUp is not connected. Direct the user to https://claw-link.dev/dashboard?add=clickup. |
Task not found | The task ID does not exist or is not accessible. |
List not found | The list ID does not exist or is not accessible. |
forbidden | No permission to perform this action. Check workspace permissions. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.clickup.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本