Skip to main content
Managing tools in your active environment keeps your tools organized, current, and ready to use. Tools represent the capabilities your agents rely on, so proper management is essential for smooth operations.

Listing tools

To check which tools are in your environment, run the orchestrate tools list command. The output shows all available tools and includes details such as their unique names. To get complete information about each tool, use the verbose option. The verbose output returns the list in JSON format with every detail.
BASH
orchestrate tools list -v

Exporting tools

To migrate a tool to another environment or share it with your team, run the orchestrate tools export command. Exporting saves time and ensures consistency across environments. This command supports Python, Agentic Workflow, Langflow, and OpenAPI tools imported via CLI.
BASH
orchestrate tools export -n <tool-name> -o <zip-output-path>
Note:
  • When you export an agentic workflow tool it also exports all tools associated with that agentic workflow tool.

Updating tools

To refresh a tool’s configuration, run the orchestrate tools import command again with the same tool unique name. This action keeps the tool current and updated.
BASH
orchestrate tools import -k <kind of the tool> -f <path the tool file that you want to update> -a <id of the app> -r <path to the requirements.txt file>

Removing tools

To remove a tool you no longer need, run the orchestrate tools remove command. Removing unused tools keeps your environment clean and prevents accidental use of outdated tools.
BASH
orchestrate tools remove -n my-tool-name