create_note
Create a new note in Bear with customizable title, content, and tags, and retrieve its unique ID for easy reference and organization.
Instructions
Create a new note in Bear and return its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tags | No | Comma separated tags (e.g., 'work,ideas') | |
text | No | Note content | |
title | No | Note title |
Input Schema (JSON Schema)
{
"properties": {
"tags": {
"description": "Comma separated tags (e.g., 'work,ideas')",
"type": "string"
},
"text": {
"description": "Note content",
"type": "string"
},
"title": {
"description": "Note title",
"type": "string"
}
},
"required": [],
"type": "object"
}