Skip to main content
Glama

Poetry MCP Server

link_poem_to_nexus

Connect poems to thematic nexuses by adding canonical tags to poem metadata. Updates tags while preserving other frontmatter fields and creates backups before modification.

Instructions

Link a poem to a nexus by adding the nexus's canonical tag.

Safely updates the poem's tags field in frontmatter, preserving all other fields. Creates a backup before modification. Automatically resyncs catalog after update.

Args: poem_id: Poem identifier (ID or title) nexus_name: Name of nexus to link (e.g., "Water-Liquid", "Childhood") nexus_type: Type of nexus (theme/motif/form), defaults to "theme"

Returns: Dictionary with operation details including success status

Example: Link a poem to a theme: result = await link_poem_to_nexus( poem_id="antlion", nexus_name="Water-Liquid", nexus_type="theme" ) print(f"Added tag: {result['tag_added']}")

Input Schema

NameRequiredDescriptionDefault
poem_idYes
nexus_nameYes
nexus_typeNotheme

Input Schema (JSON Schema)

{ "properties": { "nexus_name": { "type": "string" }, "nexus_type": { "default": "theme", "type": "string" }, "poem_id": { "type": "string" } }, "required": [ "poem_id", "nexus_name" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/james-livefront/poetry-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server