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.
23 lines (22 loc) • 788 B
TypeScript
import { KnowledgeListResponse } from "./types.js";
/**
* Defines a generic interface for formatting data into a string.
*/
interface ResponseFormatter<T> {
format(data: T): string;
}
/**
* Formatter for structured knowledge query responses
*/
export declare class KnowledgeListFormatter implements ResponseFormatter<KnowledgeListResponse> {
format(data: KnowledgeListResponse): string;
}
/**
* Create a human-readable formatted response for the atlas_knowledge_list tool
*
* @param data The structured knowledge query response data
* @param isError Whether this response represents an error condition
* @returns Formatted MCP tool response with appropriate structure
*/
export declare function formatKnowledgeListResponse(data: any, isError?: boolean): any;
export {};