add-note
Create and save a new note with name and content on the MCP Notes Server, enabling efficient note management and persistence through CRUD operations.
Instructions
Create 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"
}