Goal Story MCP Server

by hichana
Verified

goalstory_create_steps

Define actionable steps for specific goals, present them for review, and refine as needed to ensure clarity and achievability within the Goal Story MCP Server.

Instructions

Formulate actionable steps for a goal through thoughtful discussion. Present the steps for user review either before or after saving, ensuring they're clear and achievable. Confirm if any refinements are needed.

Input Schema

NameRequiredDescriptionDefault
goal_idYesUnique identifier of the goal these steps will help achieve.
stepsYesList of clear, actionable step descriptions in sequence.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "goal_id": { "description": "Unique identifier of the goal these steps will help achieve.", "type": "string" }, "steps": { "description": "List of clear, actionable step descriptions in sequence.", "items": { "type": "string" }, "type": "array" } }, "required": [ "goal_id", "steps" ], "type": "object" }
ID: 7yqi01ga3e