Get today's date in ISO 8601 format (YYYY-mm-dd.HH:MM:SS.000Z)
Get list of all databases (their names) in user's Fibery workspace (schema)
Get list of all fields (in format of 'Title [name]: type') in the selected Fibery database and for all related databases.
Run any Fibery API command. This gives tremendous flexibility, but requires a bit of experience with the low-level Fibery API. In case query succeeded, return value contains a list of records with fields you specified in select....
Create Fibery entity with specified fields. Examples (note, that these databases are non-existent, use databases only from user's schema!): Query: Create a feature Tool use: { "database": "Product Management/Feature", "entity": { "Product Management/Name": "New Feature", "Product Management/Description": "Description of the new feature", "workflow/state": "To Do" } } In case of successful execution, you will get a link to created entity. Make sure to give that link to the user.
Update Fibery entity with specified fields. Examples (note, that these databases are non-existent, use databases only from user's schema!): Query: Update a feature we talked about Tool use: { "database": "Product Management/Feature", "entity": { "fibery/id": "12345678-1234-5678-1234-567812345678", "Product Management/Name": "New Feature 2", "Product Management/Description": {"append": true, "content": "Notes: some notes"}, "workflow/state": "In Progress" } } In case of successful execution, you will get a link to updated entity. Make sure to give that link to the user.
Your Fibery domain (e.g., your-domain.fibery.io)
Your Fibery API token.