atlas-mcp-server
Version:
ATLAS (Adaptive Task & Logic Automation System): An MCP server enabling LLM agents to manage projects, tasks, and knowledge via a Neo4j-backed, three-tier architecture. Facilitates complex workflow automation and project management through LLM Agents.
31 lines (30 loc) • 969 B
TypeScript
import { ProjectListResponse } from "./types.js";
/**
* Defines a generic interface for formatting data into a string.
*/
interface ResponseFormatter<T> {
format(data: T): string;
}
/**
* Formatter for structured project query responses
*/
export declare class ProjectListFormatter implements ResponseFormatter<ProjectListResponse> {
/**
* Get an emoji indicator for the task status
*/
private getStatusEmoji;
/**
* Get a visual indicator for the priority level
*/
private getPriorityIndicator;
format(data: ProjectListResponse): string;
}
/**
* Create a human-readable formatted response for the atlas_project_list tool
*
* @param data The structured project query response data
* @param isError Whether this response represents an error condition
* @returns Formatted MCP tool response with appropriate structure
*/
export declare function formatProjectListResponse(data: any, isError?: boolean): any;
export {};