Noloco

Noloco is a no-code platform for building internal tools, client portals, and business applications backed by a dynamic GraphQL data API.

7 actions Integration catalog
Request access
Connect Noloco once you're in Boring.
01 · WHAT THE AGENT CAN DO

Actions

Every capability is a discrete, logged action the agent calls by name — scoped to what you authorize and recorded in the run trace.

Create RecordNOLOCO_CREATE_RECORD
Create one record in a table in the connected Noloco app. Use NOLOCO_DESCRIBE_TABLE first to supply valid input fields and values.
Delete RecordNOLOCO_DELETE_RECORD
Permanently delete one record from a Noloco table by ID. This is destructive and cannot be undone.
Describe TableNOLOCO_DESCRIBE_TABLE
Describe one Noloco table's selectable fields, unique lookup selectors, filters, and create/update inputs. Use this before record CRUD to learn the connected app's exact field names and GraphQL types.
Get RecordNOLOCO_GET_RECORD
Fetch one record from a Noloco table by a supported unique selector. Use NOLOCO_DESCRIBE_TABLE first because selectors and fields vary by app and table.
List RecordsNOLOCO_LIST_RECORDS
Return one forward-paginated page of records from a table in the connected Noloco app. Use NOLOCO_DESCRIBE_TABLE first to choose valid fields, filters, and sort fields.
List TablesNOLOCO_LIST_TABLES
List the record tables and generated CRUD operation names available in the connected Noloco app. Call this before using a table-specific record tool when the app schema is unknown.
Update RecordNOLOCO_UPDATE_RECORD
Partially update one Noloco record by ID. Only supplied fields are changed; use NOLOCO_DESCRIBE_TABLE first to choose valid update fields.