Skip to main content
Prerequisites Before you begin, create an account and get your API Key.

Getting started

Connect to ClickUp to manage projects, track tasks, and automate workflow operations through AI agents.
  • API
  • UI
  • Open Source
1

Install the SDKs (optional)

pip install klavis
2

Create a Strata MCP Server with ClickUp

from klavis import Klavis
from klavis.types import McpServerName

klavis_client = Klavis(api_key="YOUR_API_KEY")

response = klavis_client.mcp_server.create_strata_server(
    servers=[McpServerName.CLICKUP],
    user_id="user123"
)

API Reference

Full Strata API endpoints
3

Authenticate

import webbrowser

# Open OAuth authorization page
webbrowser.open(response.oauth_urls[McpServerName.CLICKUP])
🎉 Your ClickUp MCP Server is ready! Once authentication is complete, you can use your MCP server URL with any MCP-compatible client.

Available Tools

Tool NameDescription
clickup_get_teamsGet all teams/workspaces the user has access to
clickup_get_workspacesGet all workspaces (alias for get_teams)
clickup_get_spacesGet all spaces in a team
clickup_create_spaceCreate a new space in a team
clickup_update_spaceUpdate an existing space
clickup_get_foldersGet all folders in a space
clickup_create_folderCreate a new folder in a space
clickup_update_folderUpdate an existing folder
clickup_get_listsGet all lists in a folder or space. Either folder_id or space_id must be provided
clickup_create_listCreate a new list in a folder or space. Either folder_id or space_id must be provided along with name
clickup_update_listUpdate an existing list
clickup_get_tasksGet tasks from a list with optional filtering
clickup_get_task_by_idGet a specific task by ID
clickup_create_taskCreate a new task in ClickUp
clickup_update_taskUpdate an existing task in ClickUp
clickup_search_tasksSearch for tasks by text query
clickup_get_commentsGet comments for a specific task
clickup_create_commentCreate a comment on a task
clickup_update_commentUpdate an existing comment
clickup_get_userGet the current user’s information
clickup_get_team_membersGet all team members
For more details about tool input schema, use the get_tools API.

Next Steps

I