@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.
17 lines (16 loc) • 757 B
TypeScript
import { ResponseFormatter } from "../../../utils/responseFormatter.js";
import { FormattedDatabaseCleanResponse } from "./types.js";
/**
* Formatter for database clean operation responses
*/
export declare class DatabaseCleanFormatter implements ResponseFormatter<FormattedDatabaseCleanResponse> {
format(data: FormattedDatabaseCleanResponse): string;
}
/**
* Create a formatted, human-readable response for the atlas_database_clean tool
*
* @param data The raw database clean response data
* @param isError Whether this response represents an error condition
* @returns Formatted MCP tool response with appropriate structure
*/
export declare function formatDatabaseCleanResponse(data: FormattedDatabaseCleanResponse, isError?: boolean): any;