create_vault
Set up a new vault by specifying a unique ID, name, and directory path. Optionally initialize with default note types and switch to it immediately for organized note management.
Instructions
Create a new vault and add it to the vault registry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional description of the vault purpose | |
id | Yes | Unique identifier for the vault (filesystem-safe) | |
initialize | No | Whether to initialize with default note types | |
name | Yes | Human-readable name for the vault | |
path | Yes | Directory path where the vault should be created | |
switch_to | No | Whether to switch to the new vault after creation |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Optional description of the vault purpose",
"type": "string"
},
"id": {
"description": "Unique identifier for the vault (filesystem-safe)",
"type": "string"
},
"initialize": {
"default": true,
"description": "Whether to initialize with default note types",
"type": "boolean"
},
"name": {
"description": "Human-readable name for the vault",
"type": "string"
},
"path": {
"description": "Directory path where the vault should be created",
"type": "string"
},
"switch_to": {
"default": true,
"description": "Whether to switch to the new vault after creation",
"type": "boolean"
}
},
"required": [
"id",
"name",
"path"
],
"type": "object"
}