ClickUp Integration
STDIOMCP server providing standardized interface for AI assistants to interact with ClickUp API.
MCP server providing standardized interface for AI assistants to interact with ClickUp API.
A Model Context Protocol (MCP) server that provides a standardized interface for AI assistants to interact with the ClickUp API. This server enables AI systems to access and manipulate ClickUp data such as workspaces, spaces, folders, lists, tasks, docs, comments, and checklists.
get_workspaces
: Get the list of workspacesget_spaces
: Get spaces within a workspaceget_tasks
: Get tasks from a listcreate_task
: Create a new taskupdate_task
: Update an existing taskget_docs_from_workspace
: Get all docs from a workspacecreate_folder
: Create a new folder in a spaceget_lists
: Get lists in a folder or spacecreate_list
: Create a new listgit clone https://github.com/nsxdavid/clickup-mcp-server.git cd clickup-mcp-server npm install
Add to the MCP settings file:
{ "mcpServers": { "clickup": { "command": "node", "args": ["/path/to/clickup-mcp-server/build/index.js"], "env": { "CLICKUP_API_TOKEN": "YOUR_API_TOKEN_HERE" }, "disabled": false, "autoApprove": [] } } }
For users who prefer not to clone the repository, the package can be run directly using npx:
{ "mcpServers": { "clickup": { "command": "npx", "args": [ "-y", "clickup-mcp-server" ], "env": { "CLICKUP_API_TOKEN": "YOUR_API_TOKEN_HERE" }, "disabled": false, "autoApprove": [] } } }
YOUR_API_TOKEN_HERE
with your API token~/.vscode/extensions/saoudrizwan.claude-dev/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
npm run build
npm test
MIT