KosmoKrator

data

Appwrite CLI for AI Agents

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

Appwrite CLI Setup

Appwrite can be configured headlessly with `kosmokrator integrations:configure appwrite`.

Install, configure, and verify
# 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 appwrite --set api_key="$APPWRITE_API_KEY" --set project_id="$APPWRITE_PROJECT_ID" --enable --read allow --write ask --json
kosmokrator integrations:doctor appwrite --json
kosmokrator integrations:status --json

Credentials

Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
api_key APPWRITE_API_KEY Secret secret yes API Key
project_id APPWRITE_PROJECT_ID Text text yes Project ID
url APPWRITE_URL URL url no Server URL

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call appwrite.appwrite_list_databases '{"queries":"example_queries","search":"example_search","total":true,"limit":1,"offset":1}' --json
Provider shortcut
kosmo integrations:appwrite appwrite_list_databases '{"queries":"example_queries","search":"example_search","total":true,"limit":1,"offset":1}' --json

Discovery

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

Discovery commands
kosmo integrations:docs appwrite --json
kosmo integrations:docs appwrite.appwrite_list_databases --json
kosmo integrations:schema appwrite.appwrite_list_databases --json
kosmo integrations:search "Appwrite" --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.

appwrite.appwrite_list_databases

List all databases in the Appwrite project. Returns database IDs and names.

Read read
Parameters
queries, search, total, limit, offset
Generic call
kosmo integrations:call appwrite.appwrite_list_databases '{"queries":"example_queries","search":"example_search","total":true,"limit":1,"offset":1}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_databases '{"queries":"example_queries","search":"example_search","total":true,"limit":1,"offset":1}' --json

appwrite.appwrite_create_database

Create a database in the Appwrite project.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_database '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_database '{}' --json

appwrite.appwrite_get_database

Get details of a specific Appwrite database by its ID.

Read read
Parameters
id
Generic call
kosmo integrations:call appwrite.appwrite_get_database '{"id":"example_id"}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_database '{"id":"example_id"}' --json

appwrite.appwrite_update_database

Update a database name or enabled state.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_update_database '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_update_database '{}' --json

appwrite.appwrite_delete_database

Delete a database by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_delete_database '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_delete_database '{}' --json

appwrite.appwrite_list_collections

List all collections in an Appwrite database. Returns collection IDs and names.

Read read
Parameters
database_id, queries, search, total, limit, offset
Generic call
kosmo integrations:call appwrite.appwrite_list_collections '{"database_id":"example_database_id","queries":"example_queries","search":"example_search","total":true,"limit":1,"offset":1}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_collections '{"database_id":"example_database_id","queries":"example_queries","search":"example_search","total":true,"limit":1,"offset":1}' --json

appwrite.appwrite_create_collection

Create a collection in a database.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_collection '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_collection '{}' --json

appwrite.appwrite_get_collection

Get details for a collection.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_get_collection '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_collection '{}' --json

appwrite.appwrite_update_collection

Update collection metadata and permissions.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_update_collection '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_update_collection '{}' --json

appwrite.appwrite_delete_collection

Delete a collection from a database.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_delete_collection '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_delete_collection '{}' --json

appwrite.appwrite_list_documents

List documents in an Appwrite collection. Returns document data and metadata.

Read read
Parameters
database_id, collection_id, queries, total, limit, offset
Generic call
kosmo integrations:call appwrite.appwrite_list_documents '{"database_id":"example_database_id","collection_id":"example_collection_id","queries":"example_queries","total":true,"limit":1,"offset":1}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_documents '{"database_id":"example_database_id","collection_id":"example_collection_id","queries":"example_queries","total":true,"limit":1,"offset":1}' --json

appwrite.appwrite_get_document

Get a single document from an Appwrite collection by its ID.

Read read
Parameters
database_id, collection_id, doc_id
Generic call
kosmo integrations:call appwrite.appwrite_get_document '{"database_id":"example_database_id","collection_id":"example_collection_id","doc_id":"example_doc_id"}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_document '{"database_id":"example_database_id","collection_id":"example_collection_id","doc_id":"example_doc_id"}' --json

appwrite.appwrite_create_document

Create a new document in an Appwrite collection.

Write write
Parameters
database_id, collection_id, document_id, data
Generic call
kosmo integrations:call appwrite.appwrite_create_document '{"database_id":"example_database_id","collection_id":"example_collection_id","document_id":"example_document_id","data":"example_data"}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_document '{"database_id":"example_database_id","collection_id":"example_collection_id","document_id":"example_document_id","data":"example_data"}' --json

appwrite.appwrite_update_document

Update a document data payload.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_update_document '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_update_document '{}' --json

appwrite.appwrite_delete_document

Delete a document from a collection.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_delete_document '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_delete_document '{}' --json

appwrite.appwrite_get_current_user

Get the currently authenticated Appwrite user account information.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_get_current_user '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_current_user '{}' --json

appwrite.appwrite_list_users

List users in the Appwrite project.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_users '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_users '{}' --json

appwrite.appwrite_get_user

Get one Appwrite user by ID.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_get_user '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_user '{}' --json

appwrite.appwrite_create_user

Create a user in the Appwrite project.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_user '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_user '{}' --json

appwrite.appwrite_update_user_status

Enable or disable an Appwrite user.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_update_user_status '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_update_user_status '{}' --json

appwrite.appwrite_delete_user

Delete an Appwrite user.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_delete_user '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_delete_user '{}' --json

appwrite.appwrite_list_teams

List teams in the Appwrite project.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_teams '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_teams '{}' --json

appwrite.appwrite_get_team

Get one Appwrite team by ID.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_get_team '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_team '{}' --json

appwrite.appwrite_create_team

Create a team in the Appwrite project.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_team '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_team '{}' --json

appwrite.appwrite_delete_team

Delete an Appwrite team.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_delete_team '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_delete_team '{}' --json

appwrite.appwrite_list_team_memberships

List memberships for a team.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_team_memberships '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_team_memberships '{}' --json

appwrite.appwrite_list_buckets

List Appwrite storage buckets.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_buckets '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_buckets '{}' --json

appwrite.appwrite_get_bucket

Get one Appwrite storage bucket.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_get_bucket '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_bucket '{}' --json

appwrite.appwrite_create_bucket

Create an Appwrite storage bucket.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_bucket '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_bucket '{}' --json

appwrite.appwrite_update_bucket

Update an Appwrite storage bucket.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_update_bucket '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_update_bucket '{}' --json

appwrite.appwrite_delete_bucket

Delete an Appwrite storage bucket.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_delete_bucket '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_delete_bucket '{}' --json

appwrite.appwrite_list_files

List files in a storage bucket.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_files '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_files '{}' --json

appwrite.appwrite_get_file

Get Appwrite storage file metadata.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_get_file '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_file '{}' --json

appwrite.appwrite_delete_file

Delete a file from a storage bucket.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_delete_file '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_delete_file '{}' --json

appwrite.appwrite_list_functions

List Appwrite functions.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_functions '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_functions '{}' --json

appwrite.appwrite_get_function

Get one Appwrite function by ID.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_get_function '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_function '{}' --json

appwrite.appwrite_create_execution

Execute an Appwrite function.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_execution '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_execution '{}' --json

appwrite.appwrite_list_executions

List executions for an Appwrite function.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_executions '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_executions '{}' --json

appwrite.appwrite_get_execution

Get one Appwrite function execution.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_get_execution '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_get_execution '{}' --json

appwrite.appwrite_list_messaging_providers

List Appwrite messaging providers.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_messaging_providers '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_messaging_providers '{}' --json

appwrite.appwrite_list_topics

List Appwrite messaging topics.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_topics '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_topics '{}' --json

appwrite.appwrite_create_topic

Create an Appwrite messaging topic.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_topic '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_topic '{}' --json

appwrite.appwrite_delete_topic

Delete an Appwrite messaging topic.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_delete_topic '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_delete_topic '{}' --json

appwrite.appwrite_list_messages

List Appwrite messaging messages.

Read read
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_list_messages '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_list_messages '{}' --json

appwrite.appwrite_create_email

Create an Appwrite email message.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_email '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_email '{}' --json

appwrite.appwrite_create_push

Create an Appwrite push notification.

Write write
Parameters
none
Generic call
kosmo integrations:call appwrite.appwrite_create_push '{}' --json
Shortcut
kosmo integrations:appwrite appwrite_create_push '{}' --json

Function Schemas

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

appwrite.appwrite_list_databases 5 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_databases --json
ParameterTypeRequiredDescription
queries array no Appwrite Query strings for filtering and pagination.
search string no Search term to filter databases by name.
total boolean no Whether Appwrite should calculate total count.
limit integer no Compatibility helper that is converted to an Appwrite limit() query.
offset integer no Compatibility helper that is converted to an Appwrite offset() query.
appwrite.appwrite_create_database 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_database --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_database 1 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_database --json
ParameterTypeRequiredDescription
id string yes The database ID.
appwrite.appwrite_update_database 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_update_database --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_delete_database 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_delete_database --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_collections 6 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_collections --json
ParameterTypeRequiredDescription
database_id string yes The database ID to list collections from.
queries array no Appwrite Query strings for filtering and pagination.
search string no Search term to filter collections by name.
total boolean no Whether Appwrite should calculate total count.
limit integer no Compatibility helper that is converted to an Appwrite limit() query.
offset integer no Compatibility helper that is converted to an Appwrite offset() query.
appwrite.appwrite_create_collection 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_collection --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_collection 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_collection --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_update_collection 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_update_collection --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_delete_collection 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_delete_collection --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_documents 6 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_documents --json
ParameterTypeRequiredDescription
database_id string yes The database ID.
collection_id string yes The collection ID.
queries array no Appwrite Query strings for filtering and pagination.
total boolean no Whether Appwrite should calculate total count.
limit integer no Compatibility helper that is converted to an Appwrite limit() query.
offset integer no Compatibility helper that is converted to an Appwrite offset() query.
appwrite.appwrite_get_document 3 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_document --json
ParameterTypeRequiredDescription
database_id string yes The database ID.
collection_id string yes The collection ID.
doc_id string yes The document ID.
appwrite.appwrite_create_document 4 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_document --json
ParameterTypeRequiredDescription
database_id string yes The database ID.
collection_id string yes The collection ID.
document_id string yes A unique ID for the document (use "unique()" to auto-generate).
data object yes The document data as key-value pairs matching the collection attributes.
appwrite.appwrite_update_document 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_update_document --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_delete_document 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_delete_document --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_current_user 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_users 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_users --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_user 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_user --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_create_user 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_user --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_update_user_status 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_update_user_status --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_delete_user 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_delete_user --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_teams 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_teams --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_team 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_team --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_create_team 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_team --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_delete_team 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_delete_team --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_team_memberships 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_team_memberships --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_buckets 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_buckets --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_bucket 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_bucket --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_create_bucket 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_bucket --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_update_bucket 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_update_bucket --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_delete_bucket 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_delete_bucket --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_files 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_files --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_file 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_file --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_delete_file 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_delete_file --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_functions 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_functions --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_function 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_function --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_create_execution 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_execution --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_executions 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_executions --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_get_execution 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_get_execution --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_messaging_providers 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_messaging_providers --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_topics 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_topics --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_create_topic 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_topic --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_delete_topic 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_delete_topic --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_list_messages 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_list_messages --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_create_email 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_email --json
ParameterTypeRequiredDescription
No parameters.
appwrite.appwrite_create_push 0 parameters
Schema command
kosmo integrations:schema appwrite.appwrite_create_push --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.