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.
13 lines (12 loc) • 579 B
TypeScript
/**
* @fileoverview Implements the database export logic for Neo4j.
* @module src/services/neo4j/backupRestoreService/exportLogic
*/
/**
* Exports all Project, Task, and Knowledge nodes and relationships to JSON files.
* Also creates a full-export.json file containing all data in a single file.
* Manages backup rotation before creating the new backup.
* @returns The path to the directory containing the backup files.
* @throws Error if the export step fails. Rotation errors are logged but don't throw.
*/
export declare const _exportDatabase: () => Promise<string>;