Goal Story MCP Server

by hichana
Verified

goalstory_read_steps

Retrieve and manage the action plan for a specific goal by accessing all related steps, enabling structured progress tracking and focused achievement. Supports pagination for efficient navigation.

Instructions

Access the action plan for a specific goal, showing all steps in the journey toward achievement.

Input Schema

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

Input Schema (JSON Schema)

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