get_poem
Retrieve poems by ID or title from a poetry catalog, with options to include full text content for literary analysis and reference.
Instructions
Get a poem by ID or title.
Args: identifier: Poem ID or exact title include_content: Whether to include full poem text
Returns: Poem object or None if not found
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | ||
| include_content | No |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"type": "string"
},
"include_content": {
"default": true,
"type": "boolean"
}
},
"required": [
"identifier"
],
"type": "object"
}