get_note
Retrieve the content of a specific note from Bear Note Taking App by providing its unique identifier or title, enabling easy access to stored information via the Bear MCP Server.
Instructions
Get the content of a specific note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No | Note unique identifier | |
title | No | Note title (used if id is not provided) |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Note unique identifier",
"type": "string"
},
"title": {
"description": "Note title (used if id is not provided)",
"type": "string"
}
},
"required": [],
"type": "object"
}