Bear MCP Server

by jkawamoto
Verified

create

Generate and save a new note with optional title, tags, and timestamp using Bear MCP Server. Ensures notes are non-empty and provides a unique identifier for each.

Instructions

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" }

You must be authenticated.

Other Tools from Bear MCP Server

Related Tools

ID: 2gg54jdwwv