update_note
Modify note titles and content directly from Claude conversations by specifying the note ID and providing updated details, ensuring quick and organized note management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | New content for the note | |
id | Yes | The ID of the note to update | |
title | No | New title for the note |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "New content for the note",
"type": "string"
},
"id": {
"description": "The ID of the note to update",
"type": "string"
},
"title": {
"description": "New title for the note",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}