export_memory_bank
Export structured project documentation from Memory Bank MCP in JSON or folder format. Specify the output path to save project knowledge for seamless access and management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Export format | folder |
outputPath | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "folder",
"description": "Export format",
"enum": [
"json",
"folder"
],
"type": "string"
},
"outputPath": {
"type": "string"
}
},
"type": "object"
}