goalstory_update_scheduled_story
Modify scheduled story configurations on the Goal Story MCP Server, including updating generation times or toggling active/paused status for personalized goal narratives.
Instructions
Update the configuration of a scheduled story generation, such as changing the time or its status (active/paused).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Unique identifier of the scheduled story configuration to update. | |
status | No | Status of the scheduled story: 0 = Active, 1 = Paused. Check ScheduledStoryStatus enum for exact values if available. | |
timeSettings | No | Specifies the time of day (hour and minute) for the scheduled story generation. |
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 update.",
"type": "string"
},
"status": {
"description": "Status of the scheduled story: 0 = Active, 1 = Paused. Check ScheduledStoryStatus enum for exact values if available.",
"type": "number"
},
"timeSettings": {
"additionalProperties": false,
"description": "Specifies the time of day (hour and minute) for the scheduled story generation.",
"properties": {
"hour": {
"enum": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"type": "string"
},
"period": {
"enum": [
"AM",
"PM"
],
"type": "string"
},
"utcOffset": {
"description": "Choose a current UTC offset based on the user's location (accounting for adjustments like daylight savings time for instance). For example, the UTC offset for Los Angeles, California is -08:00 during standard time (PST, Pacific Standard Time) and -07:00 during daylight saving time (PDT, Pacific Daylight Time).",
"enum": [
"-12:00",
"-11:00",
"-10:00",
"-09:00",
"-08:00",
"-07:00",
"-06:00",
"-05:00",
"-04:00",
"-03:00",
"-02:00",
"-01:00",
"±00:00",
"+01:00",
"+02:00",
"+03:00",
"+04:00",
"+05:00",
"+06:00",
"+07:00",
"+08:00",
"+09:00",
"+10:00",
"+11:00",
"+12:00",
"+13:00",
"+14:00"
],
"type": "string"
}
},
"required": [
"hour",
"period",
"utcOffset"
],
"type": "object"
}
},
"required": [
"id"
],
"type": "object"
}