Superglue tools for ClickUp: create/update tasks, manage lists, track progress, and collaborate efficiently.
Use the Download Config or Copy Config buttons in the table below (placeholders for now). Paste or save this JSON in your project.
We use API keys, not OAuth, for this integration. Create an API token in your ClickUp Settings > Apps > API. Add CLICKUP_API_TOKEN and optionally CLICKUP_BASE_URL to your environment variables. Set Authorization: ${CLICKUP_API_TOKEN} header. See official docs: ClickUp API Documentation
npm install @superglue/client
The SDK executes the JSON workflow locally using your environment credentials. No API key required.
The SDK executes the downloaded JSON workflow locally using your environment's ClickUp API token.
import { SuperglueClient } from "@superglue/client";
import config from "./clickup_create_task.json"; // or paste JSON string
const client = new SuperglueClient();
async function run() {
const result = await client.run(config, {
env: {
CLICKUP_API_TOKEN: process.env.CLICKUP_API_TOKEN!,
CLICKUP_BASE_URL: process.env.CLICKUP_BASE_URL || "https://api.clickup.com/api/v2",
SUPERGLUE_REDIRECT_URI: process.env.SUPERGLUE_REDIRECT_URI || "https://app.superglue.cloud/api/auth/callback"
}
});
console.log(JSON.stringify(result, null, 2));
}
run();
| Tool | Actions |
|---|---|
![]() clickup_create_taskCreate a new task in a specified ClickUp list with optional assignee, description, and due date. 👥 1,312 users
|
|
![]() clickup_list_tasksList all tasks in a given ClickUp list by list ID. 👥 1,256 users
|
|
![]() clickup_update_taskUpdate existing task details such as name, description, status, priority, or due date. 👥 1,198 users
|
|
![]() clickup_add_commentAdd a comment or note to an existing ClickUp task. 👥 1,145 users
|
|
![]() clickup_get_task_detailsRetrieve detailed information for a specific ClickUp task by its ID. 👥 1,089 users
|
|
![]() clickup_list_lists_in_folderList all lists within a specific ClickUp folder. 👥 1,034 users
|
|
![]() clickup_delete_taskPermanently delete a ClickUp task by its ID. 👥 987 users
|
|