get_container_contents_only
Retrieve only the items stored in a container using a focused query that returns content with minimal metadata overhead, enabling efficient container content analysis.
Instructions
Retrieves only the items stored in a container
Usage: Get container contents without metadata overhead Performance: Focused query for container content analysis Returns: List of contained items with minimal metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Container Id"
}
},
"required": [
"container_id"
],
"type": "object"
}