KosmoKrator

data

Google Data Manager CLI for AI Agents

Use the Google Data Manager CLI from KosmoKrator to call Google Data Manager tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

6 functions 2 read 4 write oauth2 auth

Google Data Manager CLI Setup

Google Data Manager can be configured headlessly with `kosmokrator integrations:configure google_data_manager`.

# 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_data_manager --enable --read allow --write ask --json
kosmokrator integrations:doctor google_data_manager --json
kosmokrator integrations:status --json

Runtime Requirements

Install these host dependencies before calling Google Data Manager locally.

NameTypeDescription
runtime dependency
runtime dependency
runtime dependency

Credentials

Authentication type: oauth2 oauth2. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

No credentials are required.

Call Google Data Manager Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call google_data_manager.google_data_manager_diagnostics '{}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:google_data_manager google_data_manager_diagnostics '{}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

kosmo integrations:docs google_data_manager --json
kosmo integrations:docs google_data_manager.google_data_manager_diagnostics --json
kosmo integrations:schema google_data_manager.google_data_manager_diagnostics --json
kosmo integrations:search "Google Data Manager" --json
kosmo integrations:list --json

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Google Data Manager.

google_data_manager.google_data_manager_diagnostics

Read read

Show safe configuration diagnostics.

Parameters
none

Generic CLI call

kosmo integrations:call google_data_manager.google_data_manager_diagnostics '{}' --json

Provider shortcut

kosmo integrations:google_data_manager google_data_manager_diagnostics '{}' --json

google_data_manager.google_data_manager_ingest_events

Write write

Upload conversion event resources to destinations.

Parameters
none

Generic CLI call

kosmo integrations:call google_data_manager.google_data_manager_ingest_events '{}' --json

Provider shortcut

kosmo integrations:google_data_manager google_data_manager_ingest_events '{}' --json

google_data_manager.google_data_manager_ingest_audience_members

Write write

Upload audience member resources to destinations.

Parameters
none

Generic CLI call

kosmo integrations:call google_data_manager.google_data_manager_ingest_audience_members '{}' --json

Provider shortcut

kosmo integrations:google_data_manager google_data_manager_ingest_audience_members '{}' --json

google_data_manager.google_data_manager_remove_audience_members

Write write

Remove audience members from destinations.

Parameters
none

Generic CLI call

kosmo integrations:call google_data_manager.google_data_manager_remove_audience_members '{}' --json

Provider shortcut

kosmo integrations:google_data_manager google_data_manager_remove_audience_members '{}' --json

google_data_manager.google_data_manager_retrieve_request_status

Read read

Poll request processing status by request ID.

Parameters
none

Generic CLI call

kosmo integrations:call google_data_manager.google_data_manager_retrieve_request_status '{}' --json

Provider shortcut

kosmo integrations:google_data_manager google_data_manager_retrieve_request_status '{}' --json

google_data_manager.google_data_manager_raw_request

Write write

Low-level Data Manager API request for new endpoints.

Parameters
none

Generic CLI call

kosmo integrations:call google_data_manager.google_data_manager_raw_request '{}' --json

Provider shortcut

kosmo integrations:google_data_manager google_data_manager_raw_request '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

google_data_manager.google_data_manager_diagnostics

Show safe configuration diagnostics.

Operation
Read read
Schema command
kosmo integrations:schema google_data_manager.google_data_manager_diagnostics --json
ParameterTypeRequiredDescription
No parameters.

google_data_manager.google_data_manager_ingest_events

Upload conversion event resources to destinations.

Operation
Write write
Schema command
kosmo integrations:schema google_data_manager.google_data_manager_ingest_events --json
ParameterTypeRequiredDescription
No parameters.

google_data_manager.google_data_manager_ingest_audience_members

Upload audience member resources to destinations.

Operation
Write write
Schema command
kosmo integrations:schema google_data_manager.google_data_manager_ingest_audience_members --json
ParameterTypeRequiredDescription
No parameters.

google_data_manager.google_data_manager_remove_audience_members

Remove audience members from destinations.

Operation
Write write
Schema command
kosmo integrations:schema google_data_manager.google_data_manager_remove_audience_members --json
ParameterTypeRequiredDescription
No parameters.

google_data_manager.google_data_manager_retrieve_request_status

Poll request processing status by request ID.

Operation
Read read
Schema command
kosmo integrations:schema google_data_manager.google_data_manager_retrieve_request_status --json
ParameterTypeRequiredDescription
No parameters.

google_data_manager.google_data_manager_raw_request

Low-level Data Manager API request for new endpoints.

Operation
Write write
Schema command
kosmo integrations:schema google_data_manager.google_data_manager_raw_request --json
ParameterTypeRequiredDescription
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.