bear_open_note
Open specific notes in Bear App by ID, title, or search terms, with options to pin, edit, or float the note window for efficient organization and access.
Instructions
Open a note in Bear by ID or title
Input Schema
Name | Required | Description | Default |
---|---|---|---|
edit | No | Place cursor in note editor | |
exclude_trashed | No | Exclude trashed notes | |
float | No | Float note window | |
header | No | Header inside the note | |
id | No | Note unique identifier | |
new_window | No | Open in external window (macOS only) | |
open_note | No | Open note after command | |
pin | No | Pin note to top of list | |
search | No | Search term within note | |
selected | No | Selected text in note | |
show_window | No | Show Bear window | |
title | No | Note title |
Input Schema (JSON Schema)
{
"properties": {
"edit": {
"description": "Place cursor in note editor",
"type": "boolean"
},
"exclude_trashed": {
"description": "Exclude trashed notes",
"type": "boolean"
},
"float": {
"description": "Float note window",
"type": "boolean"
},
"header": {
"description": "Header inside the note",
"type": "string"
},
"id": {
"description": "Note unique identifier",
"type": "string"
},
"new_window": {
"description": "Open in external window (macOS only)",
"type": "boolean"
},
"open_note": {
"description": "Open note after command",
"type": "boolean"
},
"pin": {
"description": "Pin note to top of list",
"type": "boolean"
},
"search": {
"description": "Search term within note",
"type": "string"
},
"selected": {
"description": "Selected text in note",
"type": "string"
},
"show_window": {
"description": "Show Bear window",
"type": "boolean"
},
"title": {
"description": "Note title",
"type": "string"
}
},
"type": "object"
}