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.

12 lines (11 loc) 538 B
/** * @fileoverview Implements the database import logic for Neo4j. * @module src/services/neo4j/backupRestoreService/importLogic */ /** * Imports data from JSON files, overwriting the existing database. * Can import from either full-export.json (if it exists) or individual entity files. * @param backupDirInput The path to the directory containing the backup JSON files. * @throws Error if any step fails or if the backup directory is invalid. */ export declare const _importDatabase: (backupDirInput: string) => Promise<void>;