configureBackupPath
Set and manage backup path for Heptabase MCP to enable data retrieval, analysis, and export. Define path, monitor changes, and auto-extract data as needed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoExtract | No | ||
path | Yes | ||
watchForChanges | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"autoExtract": {
"type": "boolean"
},
"path": {
"minLength": 1,
"type": "string"
},
"watchForChanges": {
"type": "boolean"
}
},
"required": [
"path"
],
"type": "object"
}