create_note
Generate single or multiple notes with specified types, titles, content, and metadata. Organize notes in markdown format for efficient AI collaboration, using a structured vault system for storage and retrieval.
Instructions
Create one or more notes of the specified type(s)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Content of the note in markdown format - only used for single note creation | |
metadata | No | Additional metadata fields for the note (validated against note type schema) - only used for single note creation | |
notes | No | Array of notes to create - used for batch creation | |
title | No | Title of the note - only used for single note creation | |
type | No | Note type (must exist) - only used for single note creation | |
vault_id | No | Optional vault ID to operate on. If not provided, uses the current active vault. |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the note in markdown format - only used for single note creation",
"type": "string"
},
"metadata": {
"additionalProperties": true,
"description": "Additional metadata fields for the note (validated against note type schema) - only used for single note creation",
"type": "object"
},
"notes": {
"description": "Array of notes to create - used for batch creation",
"items": {
"properties": {
"content": {
"description": "Content of the note in markdown format",
"type": "string"
},
"metadata": {
"additionalProperties": true,
"description": "Additional metadata fields for the note",
"type": "object"
},
"title": {
"description": "Title of the note",
"type": "string"
},
"type": {
"description": "Note type (must exist)",
"type": "string"
}
},
"required": [
"type",
"title",
"content"
],
"type": "object"
},
"type": "array"
},
"title": {
"description": "Title of the note - only used for single note creation",
"type": "string"
},
"type": {
"description": "Note type (must exist) - only used for single note creation",
"type": "string"
},
"vault_id": {
"description": "Optional vault ID to operate on. If not provided, uses the current active vault.",
"type": "string"
}
},
"required": [],
"type": "object"
}