Sponsored by Deepsite.site

ClickUp MCP Server

Created By
MCP-Mirror10 months ago
Mirror of
Content

ClickUp MCP Server

A Model Context Protocol (MCP) server for integrating ClickUp tasks with AI applications. This server allows AI agents to interact with ClickUp tasks, spaces, lists, and folders through a standardized protocol.

Features

  • 🔄 Resource Management

    • List and read ClickUp tasks as resources
    • View task details, status, and assignments
    • Access task history and relationships
  • 📂 Workspace Organization

    • Create and manage spaces
    • Create, update, and delete folders
    • Create and manage lists (in spaces or folders)
    • Flexible identification using IDs or names
  • Task Operations

    • Create single or bulk tasks
    • Move tasks between lists
    • Duplicate tasks
    • Set priorities and due dates
    • Assign team members
  • 📊 Information Retrieval

    • Get complete hierarchy of spaces, folders, and lists with IDs
    • List available statuses
    • Find items by name (case-insensitive)
    • View task relationships
  • 🔍 Smart Name Resolution

    • Use names instead of IDs for lists and folders
    • Global search across all spaces
    • Case-insensitive matching
    • Automatic location of items
  • 📝 AI Integration

    • Generate task descriptions with AI
    • Summarize tasks and analyze priorities
    • Get AI-powered task recommendations
  • 🔒 Security

    • Secure API key management
    • Environment-based configuration

Installation

npx @taazkareem/clickup-mcp-server

Global Installation

npm install -g @taazkareem/clickup-mcp-server

Configuration

  1. Get your ClickUp API key from ClickUp Settings
  2. Create a .env file:
CLICKUP_API_KEY=your_api_key_here
TEAM_ID=your_team_id_here

Using with Cursor AI Composer

To add this server to Cursor AI Composer, follow these steps:

  1. Go to the Features section in the settings.
  2. Add the following command under MCP Servers:
npx -y @taazkareem/clickup-mcp-server \
  --env CLICKUP_API_KEY=your_api_key_here \
  --env TEAM_ID=your_team_id_here
  1. Replace your_api_key_here and your_team_id_here with your actual ClickUp credentials.
  2. Click on 'Save' to add the server.

You can get these values from:

  • CLICKUP_API_KEY: Get from ClickUp Settings > Apps
  • TEAM_ID: Your ClickUp Team ID (found in the URL when viewing your workspace or via API)

Security Note: Your API key will be stored securely and will not be exposed to AI models.

Available Tools

  1. workspace_hierarchy

    • Lists complete hierarchy of the ClickUp workspace
    • Shows spaces, folders, and lists with their IDs
    • Shows available statuses for each list
    • Provides a tree view of your workspace organization
    • No parameters required
  2. create_task

    • Creates a new task in ClickUp
    • Required parameters:
      • name: Name of the task
    • Optional parameters:
      • listId: ID of the list (optional if listName provided)
      • listName: Name of the list (optional if listId provided)
      • description: Task description
      • status: Task status
      • priority: Priority level (1-4)
      • dueDate: Due date (ISO string)
      • assignees: Array of user IDs
  3. create_bulk_tasks

    • Creates multiple tasks simultaneously in a list
    • Required parameters:
      • tasks: Array of task objects, each containing:
        • name: Name of the task (required)
        • description: Task description (optional)
        • status: Task status (optional)
        • priority: Priority level 1-4 (optional)
        • dueDate: Due date ISO string (optional)
        • assignees: Array of user IDs (optional)
    • Optional parameters:
      • listId: ID of the list (optional if listName provided)
      • listName: Name of the list (optional if listId provided)
  4. create_list

    • Creates a new list in a space
    • Required parameters:
      • name: Name of the list
    • Optional parameters:
      • spaceId: ID of the space (optional if spaceName provided)
      • spaceName: Name of the space (optional if spaceId provided)
      • content: List description
      • status: List status
      • priority: Priority level (1-4)
      • dueDate: Due date (ISO string)
  5. create_folder

    • Creates a new folder in a space
    • Required parameters:
      • name: Name of the folder
    • Optional parameters:
      • spaceId: ID of the space (optional if spaceName provided)
      • spaceName: Name of the space (optional if spaceId provided)
      • override_statuses: Whether to override space statuses
  6. create_list_in_folder

    • Creates a new list within a folder
    • Required parameters:
      • name: Name of the list
    • Optional parameters:
      • folderId: ID of the folder (optional if using folderName)
      • folderName: Name of the folder
      • spaceId: ID of the space (required if using folderName)
      • spaceName: Name of the space (alternative to spaceId)
      • content: List description
      • status: List status
  7. move_task

    • Moves a task to a different list
    • Required parameters:
      • taskId: ID of the task to move
    • Optional parameters:
      • listId: ID of destination list (optional if listName provided)
      • listName: Name of destination list (optional if listId provided)
  8. duplicate_task

    • Creates a copy of a task in a specified list
    • Required parameters:
      • taskId: ID of the task to duplicate
    • Optional parameters:
      • listId: ID of destination list (optional if listName provided)
      • listName: Name of destination list (optional if listId provided)
  9. update_task

    • Updates an existing task
    • Required parameters:
      • taskId: ID of the task to update
    • Optional parameters:
      • name: New task name
      • description: New description
      • status: New status
      • priority: New priority level (1-4)
      • dueDate: New due date (ISO string)

Available Prompts

  1. summarize_tasks

    • Provides a comprehensive summary of tasks
    • Groups tasks by status
    • Highlights priorities and deadlines
    • Suggests task relationships
  2. analyze_priorities

    • Analyzes task priority distribution
    • Identifies misaligned priorities
    • Suggests priority adjustments
    • Recommends task sequencing
  3. generate_description

    • Helps generate detailed task descriptions
    • Includes:
      • Clear objectives
      • Success criteria
      • Required resources
      • Dependencies
      • Potential risks

Name Resolution

Most tools support finding items by either ID or name:

  • Spaces can be referenced by spaceId or spaceName
  • Folders can be referenced by folderId or folderName (with space information)
  • Lists can be referenced by listId or found within spaces/folders

Name matching is case-insensitive for convenience.

Error Handling

The server provides clear error messages for common scenarios:

  • Missing required parameters
  • Invalid IDs or names
  • Items not found
  • Permission issues
  • API errors

Development

  1. Clone the repository:
git clone https://github.com/taazkareem/clickup-mcp-server.git
cd clickup-mcp-server
  1. Install dependencies:
npm install
  1. Start in development mode:
npm run dev

Contributing

Contributions are welcome! Please read our Contributing Guide for details.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Playwright McpPlaywright MCP server
ChatWiseThe second fastest AI chatbot™
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
WindsurfThe new purpose-built IDE to harness magic
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
DeepChatYour AI Partner on Desktop
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
Tavily Mcp
Amap Maps高德地图官方 MCP Server
CursorThe AI Code Editor
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Serper MCP ServerA Serper MCP Server
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code