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.
10 lines (9 loc) • 424 B
TypeScript
import { McpToolResponse } from "../../../types/mcp.js";
/**
* Create a formatted, human-readable response for the atlas_task_update tool
*
* @param data The raw task update response
* @param isError Whether this response represents an error condition
* @returns Formatted MCP tool response with appropriate structure
*/
export declare function formatTaskUpdateResponse(data: any, isError?: boolean): McpToolResponse;