box_metadata_template_get_by_name_tool
Retrieve metadata templates by name using the MCP Server Box API, enabling structured data access and integration for Box files and folders.
Instructions
Retrieve a metadata template by its name.
Args: ctx (Context): The context object containing the request and lifespan context. template_name (str): The name of the metadata template to retrieve.
Returns: dict: The metadata template associated with the provided name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
template_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"template_name": {
"title": "Template Name",
"type": "string"
}
},
"required": [
"template_name"
],
"title": "box_metadata_template_get_by_name_toolArguments",
"type": "object"
}