goalstory_destroy_goal
Permanently delete a goal and its associated steps and stories from Goal Story MCP Server. Requires confirmation to avoid accidental removal.
Instructions
Remove a goal and all its associated steps and stories from the user's journey. Use with confirmation to prevent accidental deletion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Unique identifier of the goal to be permanently removed. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Unique identifier of the goal to be permanently removed.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}