createNote
Create and store notes with structured title and content using the MCP server. Manage note-taking operations efficiently with JSON-based CRUD functionality.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the note | |
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"
},
"title": {
"description": "The title of the note",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}