find_nexuses_for_poem
Retrieve poem content and theme options for thematic analysis, enabling identification of matching themes with confidence scores to support poem categorization.
Instructions
Prepare poem and theme data for analysis by the MCP agent.
Returns poem content and available themes for YOU (the agent) to analyze. YOU identify which themes match the poem and provide confidence scores.
Args: poem_id: Poem identifier (ID or title) max_suggestions: Maximum number of theme suggestions requested
Returns: Dictionary with: - poem: Poem data (title, content, current_tags) - available_themes: Theme options with descriptions - instructions: Analysis guidance
Example workflow: ``` # 1. Get data for analysis data = await find_nexuses_for_poem("antlion", max_suggestions=3)
# 2. YOU analyze data['poem'] against data['available_themes']
# 3. YOU identify matching themes with confidence scores
# 4. User applies tags with link_poem_to_nexus()
```Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| poem_id | Yes | ||
| max_suggestions | No |