@mseep/atlas-mcp-server
Version:
A Model Context Protocol (MCP) server for ATLAS, a Neo4j-powered task management system for LLM Agents - implementing a three-tier architecture (Projects, Tasks, Knowledge) to manage complex workflows.
47 lines (46 loc) • 1.34 kB
TypeScript
import { ResponseFormatter } from "../../../utils/responseFormatter.js";
/**
* Interface for single task deletion response
*/
interface SingleTaskDeleteResponse {
id: string;
success: boolean;
message: string;
}
/**
* Interface for bulk task deletion response
*/
interface BulkTaskDeleteResponse {
success: boolean;
message: string;
deleted: string[];
errors: {
taskId: string;
error: {
code: string;
message: string;
details?: any;
};
}[];
}
/**
* Formatter for individual task removal responses
*/
export declare class SingleTaskDeleteFormatter implements ResponseFormatter<SingleTaskDeleteResponse> {
format(data: SingleTaskDeleteResponse): string;
}
/**
* Formatter for batch task removal responses
*/
export declare class BulkTaskDeleteFormatter implements ResponseFormatter<BulkTaskDeleteResponse> {
format(data: BulkTaskDeleteResponse): string;
}
/**
* Create a human-readable formatted response for the atlas_task_delete tool
*
* @param data The structured task removal operation results
* @param isError Whether this response represents an error condition
* @returns Formatted MCP tool response with appropriate structure
*/
export declare function formatTaskDeleteResponse(data: any, isError?: boolean): any;
export {};