add-note
Create and store a new note by specifying its name and content, enabling quick organization and retrieval within the Notes MCP Server's streamlined storage system.
Instructions
Add a new note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"content"
],
"type": "object"
}