# Fibery AI integration on Definable

> Fibery is a work management platform designed to help teams collaborate, organize information, and manage their workflows.

## What this connects

Fibery is a work management platform designed to help teams collaborate, organize information, and manage their workflows.

Vendor: https://fibery.io

## Tools available

**23** tools available. First 12:

- `FIBERY_DELETE_CUSTOM_APP_ENDPOINT` — Delete Custom App Endpoint — Tool to delete a specific custom app endpoint. Use after confirming the app and endpoint IDs to remove.
- `FIBERY_DELETE_ENTITY` — Delete Entity — Permanently delete a Fibery entity by its UUID and type. Use this action when you need to remove an entity from the workspace. Requires both the entity's UUID and its full qualified type name. WARNING: Deletion is irreversible. Example: Delete a task with entity_id='550e8400-e29b-41d4-a716-446655440000' and type='Tasks/Task'.
- `FIBERY_DELETE_FILE` — Delete File — Delete a file from Fibery storage using its secret identifier. Use this action to permanently remove an uploaded file. You must provide the file's secret (fibery/secret), not its ID (fibery/id). The secret is returned when you upload a file or can be queried via the commands API.
- `FIBERY_EXECUTE_GRAPH_QL_QUERY` — Execute GraphQL Query — Execute GraphQL queries or mutations against a Fibery workspace. Fibery organizes data into Spaces, each with its own GraphQL schema containing entity types and operations. This action automatically tries common space names if no space is specified, making it easy to use without prior knowledge. Best practices: - Start with introspection queries to discover schema: { __schema { types { name } } } - Use { __type(name: "Query") { fields { name } } } to see available queries - Space names typically match your workspace app/database names - The action returns both data and errors (GraphQL can return partial results)
- `FIBERY_GET_APP_INFO` — Get App Information — Tool to retrieve application information. Use when you need the version, name, description, authentication methods, and available data sources before further operations.
- `FIBERY_GET_CUSTOM_APP_ENDPOINTS` — Get Custom App Endpoints — Tool to list custom app endpoints. Use when you need the available custom endpoints for a given app before invoking them.
- `FIBERY_GET_CUSTOM_APPS` — Get Custom Apps — Tool to list all custom apps in the Fibery workspace. Use when you need the identifiers of all custom apps.
- `FIBERY_GET_ENTITIES` — Get Entities (Deprecated) — DEPRECATED: Use PostFetchData instead. Query Fibery entities from a specified database type with flexible filtering and pagination. Use this to retrieve entities (records) from Fibery databases. Common types include: - 'fibery/user' - workspace users - 'YourSpace/YourType' - custom databases in your workspace IMPORTANT - Field Selection: - PRIMITIVE fields (text, numbers, dates, bools) are selected as strings: ["fibery/id", "user/name"] - RELATION fields (entity references) require nested object syntax: * Single relations: [{"assigned-to": ["fibery/id", "user/name"]}] * Collections: [{"tasks": {"q/select": ["fibery/id", "task/name"], "q/limit": 10}}] - Selecting a relation field as a string will cause "field is not primitive" error The query uses Fibery's Commands API with fibery.entity/query command.
- `FIBERY_GET_ENTITY` — Get Fibery Entity (Deprecated) — DEPRECATED: Use PostFetchData instead. Retrieve a single Fibery entity by its unique identifier. Use this tool when you need to fetch details of a specific entity whose ID you already know. This is useful for: - Getting full details of an entity after listing entities with FIBERY_GET_ENTITIES - Refreshing entity data after an update - Fetching specific fields of an entity using the 'expand' parameter The entity_id must combine the type name and UUID (e.g., 'fibery/user/<uuid>'). Use FIBERY_GET_ENTITIES first if you need to discover entity IDs.
- `FIBERY_GET_FILE` — Get File — Download a file from Fibery by its secret or ID. Use this tool to retrieve file content from Fibery storage. The file secret is a UUID that uniquely identifies a file and is the preferred identifier. You can obtain the file secret: - From the 'fibery/secret' field when querying entities that have file fields - From the 'url' field in upload file response (extract the UUID from the URL) - From rich text content where files are embedded as /api/files/{secret}
- `FIBERY_GET_GRAPH_QL_SCHEMA` — Get GraphQL Schema — Retrieves the GraphQL schema for the Fibery workspace using standard GraphQL introspection. Returns the schema as a JSON string that includes all types, queries, mutations, and their fields. Use this to discover available GraphQL operations before executing queries.
- `FIBERY_GET_USER_PREFERENCES` — Get User Preferences — Tool to retrieve the current user's UI preferences. Use after authentication to tailor UI to user settings.

## Auth

Auth schemes: `API_KEY`.

## How agents use Fibery

Inside a Definable workflow, Fibery is one of the tools the **Distributor specialist** can call. Example coordination patterns:

- **Researcher → Fibery** — the Researcher (GPT-5.5) pulls context from Fibery (records, threads, documents), synthesises findings, and briefs the rest of the team.
- **Writer → Distributor → Fibery** — the Writer (Claude Opus 4.7) drafts copy in brand voice, the Verifier passes it, then the Distributor writes the result into Fibery (create record, post message, draft email).
- **Designer / Engineer → Distributor → Fibery** — the Designer ships an asset or the Engineer ships a code change, the Distributor delivers it via Fibery (attach file, open PR comment, post status).

The Verifier checks every Fibery call. On rate limit, schema drift, or auth refresh it self-heals and retries — the workflow completes without manual intervention.

## Categories

- project management — https://definable.ai/apps/category/project-management/
- team collaboration — https://definable.ai/apps/category/team-collaboration/

## Related

- HTML page: https://definable.ai/apps/fibery/
- Same category (project management): https://definable.ai/apps/category/project-management/
- All integrations: https://definable.ai/apps/
- Workflow (multi-agent loop): https://definable.ai/workflow/
- Apps llms.txt index: https://definable.ai/llms-apps.txt
