MCP Server for ArangoDB

arango_backup

Backup collections to JSON files.

Input Schema

NameRequiredDescriptionDefault
collectionNoCollection name to backup. If not provided, backs up all collections.
docLimitNoLimit the number of documents to backup. If not provided, backs up all documents.
outputDirYesAn absolute directory path to store backup files./backup

Input Schema (JSON Schema)

{ "properties": { "collection": { "description": "Collection name to backup. If not provided, backs up all collections.", "optional": true, "type": "string" }, "docLimit": { "description": "Limit the number of documents to backup. If not provided, backs up all documents.", "optional": true, "type": "integer" }, "outputDir": { "default": "./backup", "description": "An absolute directory path to store backup files", "optional": true, "type": "string" } }, "required": [ "outputDir" ], "type": "object" }