create_note
Create and organize notes with titles, content, and folders directly from Claude conversations using the NotePlan MCP Server interface.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | The content of the note | |
folder | No | The folder to create the note in | |
title | Yes | The title of the note |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "The content of the note",
"type": "string"
},
"folder": {
"description": "The folder to create the note in",
"type": "string"
},
"title": {
"description": "The title of the note",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}