MCP Server for ArangoDB
by ravenwits
arango_backup
Backup collections to JSON files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | No | Collection name to backup. If not provided, backs up all collections. | |
docLimit | No | Limit the number of documents to backup. If not provided, backs up all documents. | |
outputDir | Yes | An 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"
}