npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

clickup-mcp-connector

v1.0.1

Published

MCP server for ClickUp API integration — manage workspaces, tasks, comments, time tracking, custom fields, and docs via the Model Context Protocol

Downloads

230

Readme

clickup-mcp-connector

An MCP (Model Context Protocol) server for the ClickUp API. Connects AI assistants like Claude to your ClickUp workspace for managing tasks, docs, time tracking, and more.

Features

  • Workspaces & Spaces — List workspaces, create/manage spaces, folders, and lists
  • Tasks — Create, update, delete, search tasks with full filter support
  • Comments — Read and add comments on tasks
  • Time Tracking — Log and retrieve time entries
  • Custom Fields — Get, set, and remove custom field values
  • Docs — Search, create, and read documents

Installation

npm install -g clickup-mcp-connector

Or run directly with npx:

npx clickup-mcp-connector

Setup

1. Get your ClickUp API token

  1. Go to your ClickUp workspace Settings → Apps
  2. Generate a Personal API Token
  3. Copy the token

2. Configure your MCP client

Add the server to your MCP client configuration (e.g. Claude Desktop claude_desktop_config.json):

{
  "mcpServers": {
    "clickup": {
      "command": "npx",
      "args": ["-y", "clickup-mcp-connector"],
      "env": {
        "CLICKUP_ACCESS_TOKEN": "your-token-here"
      }
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "clickup": {
      "command": "clickup-mcp-connector",
      "env": {
        "CLICKUP_ACCESS_TOKEN": "your-token-here"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | clickup_get_user | Get authenticated user info | | clickup_get_workspaces | List all workspaces/teams | | clickup_get_spaces | Get spaces in a workspace | | clickup_create_space | Create a new space | | clickup_get_folders | Get folders in a space | | clickup_create_folder | Create a new folder | | clickup_get_lists | Get lists in a folder | | clickup_get_folderless_lists | Get lists directly in a space | | clickup_create_list | Create a list in a folder | | clickup_create_folderless_list | Create a list directly in a space | | clickup_get_tasks | Get tasks from a list (paginated) | | clickup_get_task | Get a single task by ID | | clickup_create_task | Create a new task | | clickup_update_task | Update task properties | | clickup_delete_task | Delete a task | | clickup_search_tasks | Search tasks with filters | | clickup_add_tag_to_task | Add a tag to a task | | clickup_remove_tag_from_task | Remove a tag from a task | | clickup_get_comments | Get task comments | | clickup_create_comment | Add a comment to a task | | clickup_get_time_entries | Get time tracking entries | | clickup_create_time_entry | Log a time entry | | clickup_get_custom_fields | Get custom fields for a list | | clickup_set_custom_field_value | Set a custom field value | | clickup_remove_custom_field_value | Remove a custom field value | | clickup_search_docs | Search documents in workspace | | clickup_get_doc_pages | Get pages of a document | | clickup_create_doc | Create a new document |

Development

git clone https://github.com/manojbonala/clickup-mcp-server.git
cd clickup-mcp-connector
npm install
npm run dev

License

MIT