productivity
Google Keep CLI for AI Agents
Use the Google Keep CLI from KosmoKrator to call Google Keep tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Google Keep CLI Setup
Google Keep can be configured headlessly with `kosmokrator integrations:configure google-keep`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure google-keep --enable --read allow --write ask --json
kosmokrator integrations:doctor google-keep --json
kosmokrator integrations:status --json Credentials
Authentication type: Manual OAuth token oauth2_manual_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
No credentials are required.
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call google-keep.google_keep_notes_get '{}' --json kosmo integrations:google-keep google_keep_notes_get '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs google-keep --json
kosmo integrations:docs google-keep.google_keep_notes_get --json
kosmo integrations:schema google-keep.google_keep_notes_get --json
kosmo integrations:search "Google Keep" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
google-keep.google_keep_notes_get
Notes Get (GET /v1/{+name}).
read - Parameters
- none
kosmo integrations:call google-keep.google_keep_notes_get '{}' --json kosmo integrations:google-keep google_keep_notes_get '{}' --json google-keep.google_keep_notes_list
Notes List (GET /v1/notes).
read - Parameters
- none
kosmo integrations:call google-keep.google_keep_notes_list '{}' --json kosmo integrations:google-keep google_keep_notes_list '{}' --json google-keep.google_keep_notes_delete
Notes Delete (DELETE /v1/{+name}).
write - Parameters
- none
kosmo integrations:call google-keep.google_keep_notes_delete '{}' --json kosmo integrations:google-keep google_keep_notes_delete '{}' --json google-keep.google_keep_notes_create
Notes Create (POST /v1/notes).
write - Parameters
- none
kosmo integrations:call google-keep.google_keep_notes_create '{}' --json kosmo integrations:google-keep google_keep_notes_create '{}' --json google-keep.google_keep_notes_permissions_batch_delete
Notes Permissions Batch Delete (POST /v1/{+parent}/permissions:batchDelete).
write - Parameters
- none
kosmo integrations:call google-keep.google_keep_notes_permissions_batch_delete '{}' --json kosmo integrations:google-keep google_keep_notes_permissions_batch_delete '{}' --json google-keep.google_keep_notes_permissions_batch_create
Notes Permissions Batch Create (POST /v1/{+parent}/permissions:batchCreate).
write - Parameters
- none
kosmo integrations:call google-keep.google_keep_notes_permissions_batch_create '{}' --json kosmo integrations:google-keep google_keep_notes_permissions_batch_create '{}' --json google-keep.google_keep_media_download
Media Download (GET /v1/{+name}).
read - Parameters
- none
kosmo integrations:call google-keep.google_keep_media_download '{}' --json kosmo integrations:google-keep google_keep_media_download '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
google-keep.google_keep_notes_get 0 parameters
kosmo integrations:schema google-keep.google_keep_notes_get --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-keep.google_keep_notes_list 0 parameters
kosmo integrations:schema google-keep.google_keep_notes_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-keep.google_keep_notes_delete 0 parameters
kosmo integrations:schema google-keep.google_keep_notes_delete --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-keep.google_keep_notes_create 0 parameters
kosmo integrations:schema google-keep.google_keep_notes_create --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-keep.google_keep_notes_permissions_batch_delete 0 parameters
kosmo integrations:schema google-keep.google_keep_notes_permissions_batch_delete --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-keep.google_keep_notes_permissions_batch_create 0 parameters
kosmo integrations:schema google-keep.google_keep_notes_permissions_batch_create --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-keep.google_keep_media_download 0 parameters
kosmo integrations:schema google-keep.google_keep_media_download --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.