goalstory_read_one_goal
Retrieve specific goal details from the Goal Story MCP Server to enable focused discussion and personalized story creation for better goal achievement.
Instructions
Retrieve detailed information about a specific goal to support focused discussion and story creation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Unique identifier of the goal to retrieve. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Unique identifier of the goal to retrieve.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}