Database Tools
Tools for interacting with the database
Database tools provide functionality for interacting with the application's database, including managing scheduled tasks, retrieving DAO information, and searching for DAOs.
Tool Overview
database_add_scheduled_task
Add a new scheduled task
Cron scheduling, task naming
database_list_scheduled_tasks
List all scheduled tasks
Task details, status
database_update_scheduled_task
Update an existing scheduled task
Partial updates, enable/disable
database_delete_scheduled_task
Delete a scheduled task
Permanent removal
database_get_dao_list
Get a list of all DAOs
Token info, extension details
database_get_dao_get_by_name
Search for DAOs by various criteria
Flexible search, detailed results
Tool Details
database_add_scheduled_task
Adds a new scheduled task to the database.
Input Parameters:
name
: Name of the scheduled taskprompt
: Prompt to schedulecron
: Cron expression for the schedule (e.g., "0 0 * * *" for daily at midnight)
Output:
Example Prompt:
database_list_scheduled_tasks
Lists all scheduled tasks for the current agent.
Input Parameters: None
Output:
Example Prompt:
database_update_scheduled_task
Updates an existing scheduled task in the database.
Input Parameters:
task_id
: ID of the scheduled task to updatename
(optional): New name for the scheduled taskprompt
(optional): New prompt for the taskcron
(optional): New cron expression for the scheduleenabled
(optional): Whether the schedule is enabled or not (true or false)
Output:
Example Prompt:
database_delete_scheduled_task
Deletes a scheduled task from the database.
Input Parameters:
task_id
: ID of the scheduled task to delete
Output:
Example Prompt:
database_get_dao_list
Retrieves a list of all DAOs with their associated tokens.
Input Parameters: None
Output:
Example Prompt:
database_get_dao_get_by_name
Searches for DAOs using multiple criteria.
Input Parameters:
name
(optional): Name or partial name of the DAOdescription
(optional): Description text to search fortoken_name
(optional): Name or partial name of the tokentoken_symbol
(optional): Symbol or partial symbol of the tokencontract_id
(optional): Contract ID or partial contract ID
Output:
Example Prompt:
Error Handling
All database tools return standardized error responses when operations fail:
Common error codes:
7001: Resource not found
7002: Invalid input
7003: Duplicate resource
7004: Database error
7005: Unauthorized access
Last updated