create_note
Generate and manage notes with a title and text using JSON output, facilitated by the Keep MCP server for Google Keep integration and organization.
Instructions
Create a new note with title and text.
Args:
title (str, optional): The title of the note
text (str, optional): The content of the note
Returns:
str: JSON string containing the created note's data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"default": null,
"title": "Text",
"type": "string"
},
"title": {
"default": null,
"title": "Title",
"type": "string"
}
},
"title": "create_noteArguments",
"type": "object"
}