goalstory_create_scheduled_story
Automate story generation for specific goals by scheduling tasks with desired time settings using the Goal Story MCP Server.
Instructions
Schedule automatic story generation for a specific goal. Requires the goal ID and the desired time settings (hour and minute).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
goal_id | Yes | Unique identifier of the goal for which to schedule story generation. | |
timeSettings | Yes | 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": {
"goal_id": {
"description": "Unique identifier of the goal for which to schedule story generation.",
"type": "string"
},
"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": [
"goal_id",
"timeSettings"
],
"type": "object"
}