ClickUp Integration

Connect ClickUp tasks and spaces to Metalogue

ClickUp Integration

Connect your ClickUp workspace to index tasks, docs, and goals.

Quick Start

const connector = await client.createConnector({
  connector_type: 'clickup',
  display_name: 'Company ClickUp',
  credentials: {
    access_token: 'pk_xxxxxxxxxxxx',
  },
});

await client.syncConnector(connector.connector_id, true);

Synced Content

Content TypeIndexed Fields
Tasksname, description, comments
Docstitle, content
Goalsname, targets
Listsname

Configuration

{
  "settings": {
    "workspaces": ["workspace-id"],
    "spaces": ["space-id"],
    "include_closed": false
  }
}

Next Steps