goalstory_destroy_scheduled_story
Remove a scheduled story configuration from the Goal Story MCP Server by specifying its unique ID. This tool ensures efficient management of automated storytelling features.
Instructions
Delete a scheduled story generation configuration. Use with confirmation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Unique identifier of the scheduled story configuration to delete. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Unique identifier of the scheduled story configuration to delete.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}