get_bear_note
Retrieve detailed content and metadata of a specific Bear note using its unique identifier. Ideal for accessing and analyzing individual notes stored in the Bear App.
Instructions
Get a specific Bear note by ID
Args: note_id: Bear note's unique identifier
Returns: Complete note content with metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"note_id": {
"title": "Note Id",
"type": "string"
}
},
"required": [
"note_id"
],
"type": "object"
}