Bear MCP Server

by jkawamoto
Verified

create

Create a new note and return its unique identifier. Empty notes are not allowed.

Input Schema

NameRequiredDescriptionDefault
tagsNolist of tags
textNonote body
timestampNoprepend the current date and time to the text
titleNonote title

Input Schema (JSON Schema)

{ "properties": { "tags": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "description": "list of tags", "title": "Tags" }, "text": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "note body", "title": "Text" }, "timestamp": { "default": false, "description": "prepend the current date and time to the text", "title": "Timestamp", "type": "boolean" }, "title": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "description": "note title", "title": "Title" } }, "title": "createArguments", "type": "object" }