box_metadata_delete_instance_on_file_tool
Remove metadata instances from files on Box using the MCP Server Box. Specify the file ID and template key to delete metadata directly via the Box API.
Instructions
Delete a metadata instance on a file.
Args: ctx (Context): The context object containing the request and lifespan context. file_id (str): The ID of the file to delete the metadata from. template_key (str): The key of the metadata template.
Returns: dict: The response from the Box API after deleting the metadata.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_id | Yes | ||
template_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_id": {
"title": "File Id",
"type": "string"
},
"template_key": {
"title": "Template Key",
"type": "string"
}
},
"required": [
"file_id",
"template_key"
],
"title": "box_metadata_delete_instance_on_file_toolArguments",
"type": "object"
}