update_note
Modify Google Keep notes by updating their title or text content via the Keep MCP server. Requires the note ID and supports optional fields for title and text changes.
Instructions
Update a note's properties.
Args:
note_id (str): The ID of the note to update
title (str, optional): New title for the note
text (str, optional): New text content for the note
Returns:
str: JSON string containing the updated note's data
Raises:
ValueError: If the note doesn't exist or cannot be modified
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_id | Yes | ||
text | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"note_id": {
"title": "Note Id",
"type": "string"
},
"text": {
"default": null,
"title": "Text",
"type": "string"
},
"title": {
"default": null,
"title": "Title",
"type": "string"
}
},
"required": [
"note_id"
],
"title": "update_noteArguments",
"type": "object"
}