Google Keep nodes
Tools for creating, reading, listing, and deleting Google Keep notes. These nodes are also served as MCP tools on the google_keep MCP server. Back to the full node reference.
Google Keep Create Note
google_keep_create_note · natural-language configurable · 1 credit on Cloud
Create a new note in Google Keep.
Credential: Google Keep (OAuth)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
content | string | ✓ | Body content of the note. |
title | string | ✓ | Title of the note. |
Output
Returns a list of records — reference fields downstream as $<node>.body.
| Field | Type | Description |
|---|---|---|
body | object | Content of the note, holding either text or list content. |
createTime | string | Time the note was created. |
name | string | Resource name of the note (e.g. notes/abc123). |
title | string | Title of the note. |
trashed | boolean | Whether the note is in the trash. |
updateTime | string | Time the note was last updated. |
Google Keep Delete Note
google_keep_delete_note · natural-language configurable · destructive · 1 credit on Cloud
Delete a note from Google Keep. This removes the note immediately and cannot be undone.
Credential: Google Keep (OAuth)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
name | string | ✓ | Resource name of the note to delete (e.g. notes/abc123). |
Output
Returns a list of records — reference fields downstream as $<node>.status.
| Field | Type | Description |
|---|---|---|
status | boolean | Whether the note was deleted successfully. |
Google Keep Get Note
google_keep_get_note · natural-language configurable · read-only · idempotent · 1 credit on Cloud
Get a single note from Google Keep by its resource name.
Credential: Google Keep (OAuth)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
name | string | ✓ | Resource name of the note to get (e.g. notes/abc123). |
Output
Returns a list of records — reference fields downstream as $<node>.body.
| Field | Type | Description |
|---|---|---|
body | object | Content of the note, holding either text or list content. |
createTime | string | Time the note was created. |
name | string | Resource name of the note (e.g. notes/abc123). |
title | string | Title of the note. |
trashed | boolean | Whether the note is in the trash. |
updateTime | string | Time the note was last updated. |
Google Keep List Notes
google_keep_list_notes · natural-language configurable · read-only · idempotent · 1 credit on Cloud
List notes from Google Keep with optional filtering and pagination.
Credential: Google Keep (OAuth)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
filter | string | Filter for list results following the Google AIP filtering spec. Valid fields: createTime, updateTime, trashTime, trashed. Defaults to non-trashed notes. | |
pageSize | number | Maximum number of notes to return. A value of zero lets the server choose the upper bound. | |
pageToken | string | The previous page's nextPageToken, used to fetch the next page of results. |
Output
Returns a list of records — reference fields downstream as $<node>.nextPageToken.
| Field | Type | Description |
|---|---|---|
nextPageToken | string | Token to fetch the next page of results, empty when there are no more notes. |
notes | array<object> | A page of notes. |