Goal Story MCP Server

by hichana
Verified

goalstory_read_stories

Retrieve personalized stories for a goal and step pair to enhance reflection, motivation, and progress tracking, using pagination for organized viewing.

Instructions

Access the collection of personalized stories created for a specific goal/step pair, supporting reflection and motivation.

Input Schema

NameRequiredDescriptionDefault
goal_idYesUnique identifier of the goal whose stories to retrieve.
limitNoMaximum number of stories to return per page.
pageNoPage number for viewing subsets of stories (starts at 1).
step_idYesUnique identifier of the step whose stories to retrieve.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "goal_id": { "description": "Unique identifier of the goal whose stories to retrieve.", "type": "string" }, "limit": { "description": "Maximum number of stories to return per page.", "type": "number" }, "page": { "description": "Page number for viewing subsets of stories (starts at 1).", "type": "number" }, "step_id": { "description": "Unique identifier of the step whose stories to retrieve.", "type": "string" } }, "required": [ "goal_id", "step_id" ], "type": "object" }
ID: 7yqi01ga3e