Built by Metorial, the integration platform for agentic AI.

Learn More

Tools

Upload File from URL

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.

Batch Create or Update Entities

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 Entity

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.

Manage Collection

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.

Manage Document

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.

Delete Entity

Permanently delete an entity (record) from a Type (database) in the Fibery workspace. This action is irreversible.

Query Entities

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.

Get Schema

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 Entity

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.