Built by Metorial, the integration platform for agentic AI.
Upload a file to the Fibery workspace from a public URL. Returns the file entity which can then be attached to entities using the "manage_collection" tool.
Create or update multiple entities at once with upsert semantics. Provide a conflict field to detect duplicates — matching entities are updated while new ones are created. Efficient for syncing external data into Fibery.
Create a new entity (record) in any Type (database) in the Fibery workspace. Supports setting primitive fields, single-select fields (via their fibery/id), and relation fields. Rich text and collection fields must be updated separately after creation.
Add or remove items from a collection (many-to-many relation) field on an entity. Use this to manage linked entities, file attachments, and other collection-type relations.
Read or write rich text document content for an entity's document field. Documents are Fibery's rich text fields (e.g., Description). Supports Markdown, HTML, JSON, and plain-text formats. To read, provide the entity and field info. To write, also provide the content.
Permanently delete an entity (record) from a Type (database) in the Fibery workspace. This action is irreversible.
Query entities from any Type (database) in the Fibery workspace. Supports field selection, filtering with operators, ordering, and pagination. Can traverse relations to include nested entity data.
Retrieve the workspace schema including all Types (databases) and their Fields. Use this to discover the data model of a Fibery workspace before querying or modifying entities. Returns type names and field definitions.
Update an existing entity (record) in any Type (database). Supports updating primitive fields, single-select fields, and relation fields. Only include the fields you want to change.