Goal Story MCP Server

by hichana
Verified

goalstory_create_story

Create and save personalized stories visualizing goal or step achievement to boost motivation. Uses user context, beliefs, and profile data to craft engaging narratives tailored to individual aspirations.

Instructions

Generate and save a highly personalized story that visualizes achievement of the current goal/step. Uses understanding of the user's beliefs, motivations, and context to create engaging mental imagery. If context is needed, gathers it through user discussion and profile data.

Input Schema

NameRequiredDescriptionDefault
goal_idYesUnique identifier of the goal this story supports.
step_idYesUnique identifier of the specific step this story visualizes.
story_textYesDetailed narrative that vividly illustrates goal/step achievement.
titleYesEngaging headline that captures the essence of the story.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "goal_id": { "description": "Unique identifier of the goal this story supports.", "type": "string" }, "step_id": { "description": "Unique identifier of the specific step this story visualizes.", "type": "string" }, "story_text": { "description": "Detailed narrative that vividly illustrates goal/step achievement.", "type": "string" }, "title": { "description": "Engaging headline that captures the essence of the story.", "type": "string" } }, "required": [ "goal_id", "step_id", "title", "story_text" ], "type": "object" }
ID: 7yqi01ga3e