Use Clickup with CrewAI Python

ClickUp is a productivity platform that provides a fundamentally new way to work.
๐Ÿ”— Connect and Use Clickup
1. ๐Ÿ”‘ Connect your Clickup account
2. โœ… Select an action
3. ๐Ÿš€ Go live with the agent
What do you want to do?
Actions
Attachments
- Create task attachment
Authorization
Task Checklists
Comments
Custom Fields
Task Relationships
Folders
Goals
Guests
Lists
Members
Roles
Shared Hierarchy
Spaces
Tags
Tasks
Task Templates
Teams - Workspaces
Teams - User Groups
Custom Task Types
Time Tracking (Legacy)
Time Tracking
Users
Views
Webhooks

API actions for Clickup for AI assitants/agents

Language
JS
PYTHON
Framework

Attachments

Create Task Attachment

Upload a file to a task as an attachment. ***Note:** This request uses multipart/form-data as the content type.*
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_TASK_ATTACHMENT])

Attachments Upload File To Task As Attachment

Upload a file to a task as an attachment. ***Note:** This request uses multipart/form-data as the content type.*<<DEPRECATED use create_task_attachment>>
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_ATTACHMENTS_UPLOAD_FILE_TO_TASK_AS_ATTACHMENT])

Authorization

Get Access Token

The text outlines API authentication via personal tokens and OAuth flow, stating OAuth tokens can't be used in "Try It" feature or tested via web browsers.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_ACCESS_TOKEN])

Authorization Get Access Token

The text outlines API authentication via personal tokens and OAuth flow, stating OAuth tokens can't be used in "Try It" feature or tested via web browsers.<<DEPRECATED use get_access_token>>
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_AUTHORIZATION_GET_ACCESS_TOKEN])

Get Authorized User

View the details of the authenticated user's ClickUp account.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_AUTHORIZED_USER])

Authorization View Account Details

View the details of the authenticated user's ClickUp account.<<DEPRECATED use get_authorized_user>>
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_AUTHORIZATION_VIEW_ACCOUNT_DETAILS])

Get Authorized Teams Workspaces

View the Workspaces available to the authenticated user.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES])

Authorization Get Work Space List

View the Workspaces available to the authenticated user.<<DEPRECATED use get_authorized_teams_workspaces>>
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_AUTHORIZATION_GET_WORK_SPACE_LIST])

Task Checklists

Create Checklist

Add a new checklist to a task.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_CHECKLIST])

Task Checklists Create New Checklist

Add a new checklist to a task.<<DEPRECATED use create_checklist>>
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_TASK_CHECKLISTS_CREATE_NEW_CHECKLIST])

Edit Checklist

Rename a task checklist, or reorder a checklist so it appears above or below other checklists on a task.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_EDIT_CHECKLIST])

Delete Checklist

Delete a checklist from a task.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_CHECKLIST])

Create Checklist Item

Add a line item to a task checklist.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_CHECKLIST_ITEM])

Edit Checklist Item

Update an individual line item in a task checklist. You can rename it, set the assignee, mark it as resolved, or nest it under another checklist item.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_EDIT_CHECKLIST_ITEM])

Delete Checklist Item

Delete a line item from a task checklist.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_CHECKLIST_ITEM])

Comments

Get Task Comments

View task comments. If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments. Use the `start` and `start id` parameters of the ol
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TASK_COMMENTS])

Create Task Comment

Add a new comment to a task.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_TASK_COMMENT])

Get Chat View Comments

View comments from a Chat view. If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments. Use the `start` and `start id` parameters
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_CHAT_VIEW_COMMENTS])

Create Chat View Comment

Add a new comment to a Chat view.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_CHAT_VIEW_COMMENT])

Get List Comments

To view comments on a List, omitting `start` and `start_id` shows the latest 25 comments. For earlier ones, use the `start` and `start_id` of the oldest comment to get the next 25.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_LIST_COMMENTS])

Create List Comment

Add a comment to a List.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_LIST_COMMENT])

Update Comment

Replace the content of a task commment, assign a comment, and mark a comment as resolved.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_COMMENT])

Delete Comment

Delete a task comment.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_COMMENT])

Custom Fields

Get Accessible Custom Fields

View the Custom Fields available on tasks in a specific List.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_ACCESSIBLE_CUSTOM_FIELDS])

Set Custom Field Value

To add data to a task's Custom Field, obtain the `task_id` and the Custom Field's `field_id` (UUID). Use the "Get Accessible Custom Fields" or "Get Task" API endpoints to find the `field_id`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_SET_CUSTOM_FIELD_VALUE])

Remove Custom Field Value

Remove the data from a Custom Field on a task. This does not delete the option from the Custom Field.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_CUSTOM_FIELD_VALUE])

Task Relationships

Add Dependency

Set a task as waiting on or blocking another task.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_ADD_DEPENDENCY])

Delete Dependency

Remove the dependency relationship between two or more tasks.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_DEPENDENCY])

Folders

Get Folders

View the Folders in a Space.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_FOLDERS])

Folders Get Contents Of

View the Folders in a Space.<<DEPRECATED use get_folders>>
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_FOLDERS_GET_CONTENTS_OF])

Create Folder

Add a new Folder to a Space.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_FOLDER])

Folders Create New Folder

Add a new Folder to a Space.<<DEPRECATED use create_folder>>
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_FOLDERS_CREATE_NEW_FOLDER])

Get Folder

View the Lists within a Folder.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_FOLDER])

Folders Get Folder Content

View the Lists within a Folder.<<DEPRECATED use get_folder>>
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_FOLDERS_GET_FOLDER_CONTENT])

Update Folder

Rename a Folder.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_FOLDER])

Delete Folder

Delete a Folder from your Workspace.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_FOLDER])

Goals

Get Goals

View the Goals available in a Workspace.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_GOALS])

Create Goal

Add a new Goal to a Workspace.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_GOAL])

Get Goal

View the details of a Goal including its Targets.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_GOAL])

Update Goal

Rename a Goal, set the due date, replace the description, add or remove owners, and set the Goal color.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_GOAL])

Delete Goal

Remove a Goal from your Workspace.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_GOAL])

Create Key Result

Add a Target to a Goal.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_KEY_RESULT])

Edit Key Result

Update a Target.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_EDIT_KEY_RESULT])

Delete Key Result

Delete a target from a Goal.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_KEY_RESULT])

Guests

Invite Guest To Workspace

To invite a guest to your Workspace, use the "Invite User to Workspace" endpoint. Then, use specific endpoints to grant access to folders, lists, or tasks. Note: Available only for Enterprise
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_INVITE_GUEST_TO_WORKSPACE])

Get Guest

View information about a guest. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_GUEST])

Edit Guest On Workspace

Rename and configure options for a guest. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_EDIT_GUEST_ON_WORKSPACE])

Remove Guest From Workspace

Revoke a guest's access to a Workspace. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_GUEST_FROM_WORKSPACE])

Frequently asked questions

What is Composio.dev?

Composio.dev is a cutting-edge framework for building AI applications, designed to make the process of developing AI solutions super easy and fun! It's a collection of powerful tools and libraries that simplify the process of creating AI applications, allowing you to focus on the creative aspects of your project without getting bogged down by the technical details.

How does Composio.dev support Clickup?

Composio.dev seamlessly integrates with Clickup, making it a breeze to leverage its capabilities within the Composio.dev platform. You can use Clickup to call functions on various platforms like Google, GitHub, and others, allowing you to incorporate different services into your AI applications with ease. It also supports user login via OAuth2 and can work with other popular frameworks such as LangChain and CrewAI, giving you the flexibility to build truly innovative AI solutions.

What models can I use with Clickup and crewAI_python?

When using Clickup and crewAI_python, you have access to a wide range of state-of-the-art language models, including GPT-4o (OpenAI), GPT-3.5 (OpenAI), GPT-4 (OpenAI), Claude (Anthropic), PaLM (Google), LLaMA and LLaMA 2 (Meta), Gemini, and many others. This flexibility allows you to choose the model that best suits your specific use case, whether you're building a chatbot, a content creation tool, or any other AI-powered application. You can experiment with different models and find the one that delivers the best performance for your project.

How can I integrate Clickup with crewAI_python?

Integrating Clickup with crewAI_python is super easy with Composio.dev! You can use the Composio.dev API to call functions from both Clickup and crewAI_python, allowing you to tap into their capabilities with just a few lines of code. The SDK is available in Python, JavaScript, and TypeScript, so you can work with the language you're most comfortable with and integrate these powerful tools into your projects seamlessly.

What is the pricing for Clickup and crewAI_python?

Both Clickup and crewAI_python are completely free to use, with a generous free tier that allows up to 1000 requests per month. This makes them accessible for developers and organizations of all sizes, whether you're a student working on a personal project or a startup building the next big thing. You can get started with these powerful tools without worrying about breaking the bank.

What kind of authentication is supported for Clickup and crewAI_python?

Clickup and crewAI_python support OAuth2 authentication, ensuring secure and authorized access to their functionalities. You can use the Composio.dev API to handle authentication and call functions from both Clickup and crewAI_python seamlessly. The SDK is available in Python, JavaScript, and TypeScript for your convenience, making it easy to integrate authentication into your projects and keep your users' data safe and secure.

Can I add Clickup to my project?

Absolutely! You can easily incorporate Clickup into your project by utilizing the Composio.dev API. This API allows you to call functions from both Clickup and crewAI_python, enabling you to leverage their capabilities within your application. The SDK is available in Python, JavaScript, and TypeScript to facilitate integration, so you can work with the language you're most comfortable with and add these powerful tools to your project with ease.

What is the accuracy of Clickup and crewAI_python?

Clickup and crewAI_python are designed to provide highly accurate and reliable results, ensuring that your AI applications perform at their best. The integration with Composio.dev ensures precise function calls, enabling you to build robust and powerful AI applications with confidence. The comprehensive framework and the ability to leverage state-of-the-art models ensure reliable and accurate outcomes for your AI development needs, whether you're working on a chatbot, a content creation tool, or any other AI-powered project.

What are some common use cases for Clickup and crewAI_python?

Clickup and crewAI_python can be used for a wide range of AI applications, making them versatile tools for developers and creators alike. Some common use cases include natural language processing, text generation, question answering, sentiment analysis, and more. They're particularly useful for building chatbots, virtual assistants, content creation tools, and other AI-powered applications that can help you automate tasks, engage with users, and create compelling content. Whether you're working on a personal project or building a product for your startup, these tools can help you bring your ideas to life.

How does Clickup handle data privacy and security?

Data privacy and security are crucial considerations when working with AI systems, and Clickup takes these issues seriously. It follows industry best practices and adheres to strict data protection regulations, ensuring that your data is kept safe and secure. Clickup provides robust security measures, such as encryption and access controls, to ensure the confidentiality and integrity of your data. You can rest assured that your sensitive information is protected when using Clickup for your AI development needs.

Can I customize Clickup and crewAI_python for my specific needs?

Absolutely! Clickup and crewAI_python are highly customizable and extensible, allowing you to tailor their functionality, models, and configurations to meet your specific requirements. Whether you're building a chatbot, a content creation tool, or any other AI-powered application, you can customize these tools to fit your unique needs. Additionally, Composio.dev provides a flexible platform for integrating and orchestrating various AI tools and services, enabling you to create custom AI solutions that are tailored to your project.

What kind of support and documentation is available for Clickup and crewAI_python?

Clickup and crewAI_python have comprehensive documentation and a supportive community, making it easy for you to get started and find answers to your questions. Composio.dev also provides extensive resources, including tutorials, guides, and a dedicated support team to assist you throughout your AI development journey. Whether you're a beginner or an experienced developer, you'll have access to the resources you need to make the most of these powerful tools.
+ Integrate seamlessly with your agentic frameworks
Composio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and Sizes
Building for AI across continents๐Ÿงช