list_poems_by_state
Filter and browse poems by their current development state to organize your poetry collection and track writing progress across different stages.
Instructions
List poems in a specific state.
Args: state: State to filter by (completed, fledgeling, still_cooking, etc.) sort_by: Field to sort by (title, created_at, updated_at, word_count) limit: Maximum number of results
Returns: List of poems in the specified state
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| state | Yes | ||
| sort_by | No | title | |
| limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"type": "integer"
},
"sort_by": {
"default": "title",
"type": "string"
},
"state": {
"type": "string"
}
},
"required": [
"state"
],
"type": "object"
}