Fibery
Fibery

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

Completely Secure
79001VIEWS
2705USERS

Tools

1 of 5

Authenticate (validate Token Via Api Call)

Tool to validate existing Fibery personal API token by performing a real API call. If the call succeeds, returns the token value extracted from the Authorization header. Use the returned token in the `Authorization: Token <value>` header for further calls.

Delete Custom App Endpoint

Tool to delete a specific custom app endpoint. Use after confirming the app and endpoint IDs to remove.

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'.

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.

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)

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.