UNPKG

@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) 712 B
import { ResponseFormatter } from "../../../utils/responseFormatter.js"; import { KnowledgeListResponse } from "./types.js"; /** * 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;