add-note
Create and store a new note with a name and content using the Datetime MCP Server, enabling organized management and summary generation for stored notes.
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"
}