create_canvas
Create a new canvas file in your Obsidian vault to organize notes and ideas visually. Specify the vault name and file path to generate the canvas.
Instructions
Create a new canvas file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path for new canvas | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path for new canvas",
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"path"
],
"type": "object"
}