box_search_folder_by_name_tool
Search and locate specific folders in Box by their name using the MCP Server Box. Simplify folder identification by retrieving folder IDs for efficient organization and access.
Instructions
Locate a folder in Box by its name.
Args: folder_name (str): The name of the folder to locate. return: List[dict]: The folder ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"folder_name": {
"title": "Folder Name",
"type": "string"
}
},
"required": [
"folder_name"
],
"title": "box_search_folder_by_name_toolArguments",
"type": "object"
}