@taazkareem/clickup-mcp-server
Version:
ClickUp MCP Server - Integrate ClickUp tasks with AI through Model Context Protocol
26 lines (25 loc) • 765 B
JavaScript
/**
* 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) {
super(apiKey, teamId, baseUrl, workspaceService);
this.logOperation('constructor', { initialized: true });
}
}