updateNote
Modify note details in the MCP server by providing the note ID along with updated title and content. Ideal for maintaining accurate and current note-taking records.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | The updated content of the note | |
noteId | Yes | The ID of the note to update | |
title | No | The updated title of the note |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "The updated content of the note",
"type": "string"
},
"noteId": {
"description": "The ID of the note to update",
"type": "string"
},
"title": {
"description": "The updated title of the note",
"type": "string"
}
},
"required": [
"noteId"
],
"type": "object"
}