Loading...
Loading...
Grist integration. Manage Workspaces, Users, Roles. Use when the user wants to interact with Grist data.
npx skill4agent add membranedev/application-skills gristmembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search grist --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| Run SQL Query | run-sql-query | Execute a SQL SELECT query against a document |
| Delete Records | delete-records | Delete records from a table by ID |
| Upsert Records | upsert-records | Add or update records based on matching criteria |
| Update Records | update-records | Modify existing records in a table by ID |
| Create Records | create-records | Add one or more records to a table |
| List Records | list-records | Fetch records from a table with optional filtering, sorting, and limiting |
| List Columns | list-columns | List all columns in a table |
| Add Columns | add-columns | Add new columns to a table |
| Create Table | create-table | Create a new table in a document with specified columns |
| List Tables | list-tables | List all tables in a document |
| Delete Document | delete-document | Delete a document |
| Create Document | create-document | Create an empty document in a workspace |
| Get Document | get-document | Get metadata about a document |
| Delete Workspace | delete-workspace | Delete a workspace |
| Create Workspace | create-workspace | Create an empty workspace in an organization |
| List Workspaces | list-workspaces | List all workspaces and documents within an organization |
| List Organizations | list-organizations | List all organizations (team sites or personal areas) you have access to |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY