UNPKG

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.

11 lines (10 loc) 410 B
import { ToolContext } from "../../../types/tool.js"; /** * Execute a complete database reset operation * This permanently removes all data from the Neo4j database * * @param input No input parameters required * @param context Tool execution context * @returns Formatted response with operation results */ export declare const atlasDatabaseClean: (input: unknown, context: ToolContext) => Promise<any>;