create_note
Create a new Markdown note with title, content, and optional tags to organize your thoughts and documentation in a structured format.
Instructions
Create a new Markdown note
Args: title: Note title content: Note content tags: Optional comma-separated list of tags
Returns: Confirmation message of note creation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| content | Yes | ||
| tags | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"tags": {
"default": "",
"title": "Tags",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}