一键导入
clickup-mcp
Manage ClickUp tasks, docs, time tracking, comments, chat, and search via official MCP. OAuth authentication required.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage ClickUp tasks, docs, time tracking, comments, chat, and search via official MCP. OAuth authentication required.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate ONE on-brand still-image creative for a single Aries social post at the correct per-platform scale. Use once per content_package post whose media is an image (feed / story-image). FORCES exactly one image_generate call and returns the generated_image creative_asset plus a content_package entry stamped with its placement. Paired with /social-video-creative for video posts.
Generate ONE on-brand short-form vertical video (Reel / Story video) for a single Aries social post at 9:16 reel scale. Use once per requested video clip. FORCES exactly one video_generate call and returns the generated_video creative_asset (localized basename + width/height/duration) plus a content_package entry stamped placement=reel / media_type=video. Paired with /social-image-creative for image posts.
Orchestrate creative asset production for social content. Use after /social-content-planner approval to coordinate /ad_designer, /scriptwriter, and /page_designer. Reviews all work for brand consistency and quality before presenting to user. The "make it happen" skill that turns approved strategy into deliverables.
Orchestrate brand-to-social-content workflow. Runs website brand analysis, then social content planning. Use when starting marketing for a brand from scratch or refreshing strategy. Produces brand bible + full social content plan ready for creative production.
Write video ad scripts with full production notes. Creates scene-by-scene breakdowns including dialogue, B-roll suggestions, on-screen text, camera direction, and timing. Outputs individual script files plus combined overview for approval.
Create a Meta Ads social content proposal based on brand guidelines and competitor analysis. Generates funnel strategy, landing pages, ad creatives, video scripts, and budget allocation. Outputs both markdown and HTML for review before asset creation.
| name | clickup-mcp |
| description | Manage ClickUp tasks, docs, time tracking, comments, chat, and search via official MCP. OAuth authentication required. |
| homepage | https://clickup.com |
| metadata | {"clawdbot":{"emoji":"✅","requires":{"bins":["mcporter"],"env":["CLICKUP_TOKEN"]}}} |
Access ClickUp via the official MCP server. Full workspace search, task management, time tracking, comments, chat, and docs.
ClickUp MCP only allows OAuth from allowlisted clients:
# Claude Code
claude mcp add clickup --transport http https://mcp.clickup.com/mcp
# Then /mcp in session to authorize
Use Claude Code to OAuth, then extract token for mcporter:
Step 1: Authorize via Claude Code
claude mcp add clickup --transport http https://mcp.clickup.com/mcp
claude
# In Claude Code, run: /mcp
# Complete OAuth in browser
Step 2: Extract token
jq -r '.mcpOAuth | to_entries | .[] | select(.key | startswith("clickup")) | .value.accessToken' ~/.claude/.credentials.json
Use ~/.openclaw/.env for this OpenClaw install, not the older ~/.clawdbot/.env path.
Step 3: Add to environment
# Add to ~/.openclaw/.env
CLICKUP_TOKEN=eyJhbGciOiJkaXIi...
Step 4: Configure mcporter
Add to config/mcporter.json:
{
"mcpServers": {
"clickup": {
"baseUrl": "https://mcp.clickup.com/mcp",
"description": "Official ClickUp MCP",
"headers": {
"Authorization": "Bearer ${CLICKUP_TOKEN}"
}
}
}
}
Step 5: Test
mcporter list clickup
mcporter call 'clickup.clickup_search(keywords: "test", count: 3)'
Tokens are long-lived (~10 years). If expired:
/mcp in Claude Code~/.claude/.credentials.jsonCLICKUP_TOKEN in ~/.openclaw/.env| Tool | Description |
|---|---|
clickup_search | Universal search across tasks, docs, dashboards, chat, files |
| Tool | Description |
|---|---|
clickup_create_task | Create task with name, description, status, assignees, due date, priority |
clickup_get_task | Get task details (with optional subtasks) |
clickup_update_task | Update any task field |
clickup_attach_task_file | Attach file to task (URL or base64) |
clickup_add_tag_to_task | Add tag to task |
clickup_remove_tag_from_task | Remove tag from task |
| Tool | Description |
|---|---|
clickup_get_task_comments | Get all comments on task |
clickup_create_task_comment | Add comment (supports @mentions) |
| Tool | Description |
|---|---|
clickup_start_time_tracking | Start timer on task |
clickup_stop_time_tracking | Stop active timer |
clickup_add_time_entry | Log time manually |
clickup_get_task_time_entries | Get time entries for task |
clickup_get_current_time_entry | Check active timer |
| Tool | Description |
|---|---|
clickup_get_workspace_hierarchy | Get full structure (Spaces, Folders, Lists) |
clickup_create_list | Create list in Space |
clickup_create_list_in_folder | Create list in Folder |
clickup_get_list | Get list details |
clickup_update_list | Update list settings |
clickup_create_folder | Create folder in Space |
clickup_get_folder | Get folder details |
clickup_update_folder | Update folder settings |
| Tool | Description |
|---|---|
clickup_get_workspace_members | List all workspace members |
clickup_find_member_by_name | Find member by name/email |
clickup_resolve_assignees | Get user IDs from names |
| Tool | Description |
|---|---|
clickup_get_chat_channels | List all Chat channels |
clickup_send_chat_message | Send message to channel |
| Tool | Description |
|---|---|
clickup_create_document | Create new Doc |
clickup_list_document_pages | Get Doc structure |
clickup_get_document_pages | Get page content |
clickup_create_document_page | Add page to Doc |
clickup_update_document_page | Edit page content |
mcporter call 'clickup.clickup_search(
keywords: "Q4 marketing",
count: 10
)'
mcporter call 'clickup.clickup_create_task(
name: "Review PR #42",
list_id: "901506994423",
description: "Check the new feature",
status: "to do"
)'
mcporter call 'clickup.clickup_update_task(
task_id: "abc123",
status: "in progress"
)'
mcporter call 'clickup.clickup_create_task_comment(
task_id: "abc123",
comment_text: "@Mark can you review this?"
)'
# Start timer
mcporter call 'clickup.clickup_start_time_tracking(
task_id: "abc123",
description: "Working on feature"
)'
# Stop timer
mcporter call 'clickup.clickup_stop_time_tracking()'
# Log time manually (duration in ms, e.g., 2h = 7200000)
mcporter call 'clickup.clickup_add_time_entry(
task_id: "abc123",
start: "2026-01-06 10:00",
duration: "2h",
description: "Code review"
)'
mcporter call 'clickup.clickup_get_workspace_hierarchy(limit: 10)'
# List channels
mcporter call 'clickup.clickup_get_chat_channels()'
# Send message
mcporter call 'clickup.clickup_send_chat_message(
channel_id: "channel-123",
content: "Team standup in 5 minutes!"
)'