UNPKG

@taazkareem/clickup-mcp-server

Version:

ClickUp MCP Server - Integrate ClickUp tasks with AI through Model Context Protocol

17 lines (16 loc) 510 B
/** * SPDX-FileCopyrightText: © 2025 Talib Kareem <taazkareem@icloud.com> * SPDX-License-Identifier: MIT * * Tools Index * * This file exports all tool definitions and handlers for the ClickUp MCP server. * Each tool category (workspace, task, list, folder) is organized into its own module * for better maintainability. */ export * from './workspace.js'; export * from './task/index.js'; export * from './list.js'; export * from './folder.js'; export * from './tag.js'; export * from './member.js';