Goal Story MCP Server

by hichana
Verified

goalstory_update_step

Modify step details like name, status, evidence, and outcome to track progress effectively within Goal Story MCP Server's goal management system.

Instructions

Update step details including the name, completion status, evidence, and outcome. Use this to track progress and insights.

Input Schema

NameRequiredDescriptionDefault
evidenceNoConcrete proof or observations of step completion.
idYesUnique identifier of the step to update.
nameNoRefined or clarified step description.
outcomeNoResults and impact achieved through completing this step.
statusNoStep completion status: 0 = pending/in progress, 1 = completed.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "evidence": { "description": "Concrete proof or observations of step completion.", "type": "string" }, "id": { "description": "Unique identifier of the step to update.", "type": "string" }, "name": { "description": "Refined or clarified step description.", "type": "string" }, "outcome": { "description": "Results and impact achieved through completing this step.", "type": "string" }, "status": { "description": "Step completion status: 0 = pending/in progress, 1 = completed.", "type": "number" } }, "required": [ "id" ], "type": "object" }
ID: 7yqi01ga3e