Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for ClickUp task management, enabling task search, creation, update, deletion, workspace info retrieval, and comment management via ClickUp API v2.

README.md

ClickUp MCP Server

ClickUp のタスク管理を行う MCP (Model Context Protocol) サーバーです。

ClickUp API v2 を使用して、タスクの検索・作成・更新・削除、ワークスペース情報の取得、コメントの管理ができます。

提供ツール(15個)

ワークスペース

| ツール名 | 説明 | |---|---| | get_teams | チーム(ワークスペース)一覧を取得 | | get_spaces | スペース一覧を取得 | | get_folders | フォルダー一覧を取得 | | get_lists | スペース直下のリスト一覧を取得 | | get_folder_lists | フォルダー内のリスト一覧を取得 |

タスク管理

| ツール名 | 説明 | |---|---| | create_task | タスクを作成(担当者・タグ・優先度・日時指定可) | | get_tasks | リスト内のタスク一覧を取得(自動ページネーション) | | get_task_detail | タスクの詳細情報を取得 | | update_task | タスクの各フィールドを更新(汎用) | | update_task_status | タスクのステータスを更新 | | delete_task | タスクを削除 |

検索・分析

| ツール名 | 説明 | |---|---| | search_tasks | 高度な検索(ステータス・担当者・タグ・日付フィルタ) | | get_weekly_summary | ステータス別タスクサマリーを取得 |

コメント

| ツール名 | 説明 | |---|---| | add_comment | タスクにコメントを追加 | | get_task_comments | タスクのコメント一覧を取得 |

セットアップ

1. ClickUp API キーの取得

ClickUp Settings > Apps で API キーを取得してください。

2. MCP クライアントに設定

Claude Desktop

claude_desktop_config.json に以下を追加:

{
  "mcpServers": {
    "clickup": {
      "command": "npx",
      "args": ["-y", "clickup-mcp"],
      "env": {
        "CLICKUP_API_KEY": "pk_your-api-key",
        "CLICKUP_TEAM_ID": "your-team-id"
      }
    }
  }
}

Claude Code

プロジェクトルートの .mcp.json またはCLIで追加:

{
  "mcpServers": {
    "clickup": {
      "command": "npx",
      "args": ["-y", "clickup-mcp"],
      "env": {
        "CLICKUP_API_KEY": "pk_your-api-key",
        "CLICKUP_TEAM_ID": "your-team-id"
      }
    }
  }
}

ローカルで実行する場合

git clone https://github.com/yourname/clickup-mcp.git
cd clickup-mcp
npm install
npm run build

MCP クライアント設定:

{
  "mcpServers": {
    "clickup": {
      "command": "node",
      "args": ["/path/to/clickup-mcp/build/index.js"],
      "env": {
        "CLICKUP_API_KEY": "pk_your-api-key",
        "CLICKUP_TEAM_ID": "your-team-id"
      }
    }
  }
}

主な機能

自動ページネーション

get_taskssearch_tasks は最大10ページ(1000件)まで自動取得します。

配列パラメータ

search_tasksassigneesstatusestags は配列で渡せます。ClickUp API が要求する key[] 形式に自動変換されます。

日時の柔軟なパース

日時パラメータは以下の形式に対応しています:

  • 2026-02-19(日付のみ)
  • 2026-02-19T14:30(ISO形式)
  • 2026-02-19 14:30:00(スペース区切り)
  • 2026/02/19(スラッシュ区切り)

環境変数

| 変数名 | 必須 | デフォルト | 説明 | |---|---|---|---| | CLICKUP_API_KEY | Yes | — | ClickUp API キー | | CLICKUP_TEAM_ID | Yes | — | チーム(ワークスペース)ID | | CLICKUP_DEFAULT_LIST_ID | No | — | デフォルトリストID |

ライセンス

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.