| name | clickup-hello-world |
| description | Make your first ClickUp API v2 calls: list workspaces, spaces, and create a task.
Use when starting a new ClickUp integration, testing your setup,
or learning the ClickUp hierarchy (Workspace, Space, Folder, List, Task).
Trigger: "clickup hello world", "clickup first call", "clickup quick start",
"test clickup API", "create clickup task".
|
| allowed-tools | Read, Write, Edit, Bash(curl:*) |
| version | 1.6.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","productivity","clickup"] |
| compatibility | Designed for Claude Code |
ClickUp Hello World
Overview
Walk through the ClickUp hierarchy and make your first API calls. ClickUp's data model: Workspace (called "team" in API v2) > Space > Folder (optional) > List > Task.
Prerequisites
- Completed
clickup-install-auth setup
- Valid
CLICKUP_API_TOKEN in environment
ClickUp Hierarchy
Workspace (team_id) GET /api/v2/team
└── Space (space_id) GET /api/v2/team/{team_id}/space
├── List GET /api/v2/space/{space_id}/list (folderless lists)
└── Folder GET /api/v2/space/{space_id}/folder
└── List GET /api/v2/folder/{folder_id}/list
└── Task GET /api/v2/list/{list_id}/task
Step 1: Discover Your Workspace
curl -s https://api.clickup.com/api/v2/team \
-H "Authorization: $CLICKUP_API_TOKEN" | jq '.teams[] | {id, name}'
Response shape:
{
"teams": [{
"id": "1234567",
"name": "My Workspace",
"color": "#536cfe",
"members": [{ "user": { "id": 123, "username"