find
Search and retrieve Google Keep notes by matching a query against titles and text, returning results in JSON format with details like id, title, and labels.
Instructions
Find notes based on a search query.
Args:
query (str, optional): A string to match against the title and text
Returns:
str: JSON string containing the matching notes with their id, title, text, pinned status, color and labels
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | No |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"default": "",
"title": "query",
"type": "string"
}
},
"title": "findArguments",
"type": "object"
}