Bear MCP Server

by jkawamoto
Verified

open_note

Open a note identified by its title or id and return its content.

Input Schema

NameRequiredDescriptionDefault
idNonote unique identifier
titleNonote title

Input Schema (JSON Schema)

{ "properties": { "id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "note unique identifier", "title": "Id" }, "title": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "note title", "title": "Title" } }, "title": "open_noteArguments", "type": "object" }