Skip to content

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

FieldTypeRequiredDescription
contentstringBody content of the note.
titlestringTitle of the note.

Output

Returns a list of records — reference fields downstream as $<node>.body.

FieldTypeDescription
bodyobjectContent of the note, holding either text or list content.
createTimestringTime the note was created.
namestringResource name of the note (e.g. notes/abc123).
titlestringTitle of the note.
trashedbooleanWhether the note is in the trash.
updateTimestringTime 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

FieldTypeRequiredDescription
namestringResource name of the note to delete (e.g. notes/abc123).

Output

Returns a list of records — reference fields downstream as $<node>.status.

FieldTypeDescription
statusbooleanWhether 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

FieldTypeRequiredDescription
namestringResource name of the note to get (e.g. notes/abc123).

Output

Returns a list of records — reference fields downstream as $<node>.body.

FieldTypeDescription
bodyobjectContent of the note, holding either text or list content.
createTimestringTime the note was created.
namestringResource name of the note (e.g. notes/abc123).
titlestringTitle of the note.
trashedbooleanWhether the note is in the trash.
updateTimestringTime 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

FieldTypeRequiredDescription
filterstringFilter for list results following the Google AIP filtering spec. Valid fields: createTime, updateTime, trashTime, trashed. Defaults to non-trashed notes.
pageSizenumberMaximum number of notes to return. A value of zero lets the server choose the upper bound.
pageTokenstringThe previous page's nextPageToken, used to fetch the next page of results.

Output

Returns a list of records — reference fields downstream as $<node>.nextPageToken.

FieldTypeDescription
nextPageTokenstringToken to fetch the next page of results, empty when there are no more notes.
notesarray<object>A page of notes.