UNPKG

@s.pawel940/clickup-mcp-server

Version:

ClickUp MCP Server (Read-Only Fork) - Integrate ClickUp tasks with AI through Model Context Protocol

26 lines (25 loc) 801 B
/** * SPDX-FileCopyrightText: © 2025 Talib Kareem <taazkareem@icloud.com> * SPDX-License-Identifier: MIT * * ClickUp Task Service * * Main entry point for the ClickUp Task Service. * Combines all task-related functionality through inheritance: * - Core operations (CRUD) * - Search capabilities * - File attachments * - Comments * - Tags * - Custom fields */ import { TaskServiceCustomFields } from './task-custom-fields.js'; /** * Complete TaskService combining all task-related functionality */ export class TaskService extends TaskServiceCustomFields { constructor(apiKey, teamId, baseUrl, workspaceService, readOnlyMode = false) { super(apiKey, teamId, baseUrl, workspaceService, readOnlyMode); this.logOperation('constructor', { initialized: true }); } }