Job scheduling made easy.
Scheduler allows you to schedule recurrent jobs with an easy-to-read syntax.
Inspired by the article Rethinking Cron and the schedule python module.
job := func() {
fmt.Println("Time's up!")
}
scheduler.Every(5).Minutes().Run(job)
scheduler.Every().Day().Run(job)
scheduler.Every().Monday().At("08:30").Run(job)
Distributed under MIT license. See LICENSE for more information.
—
$ claude mcp add scheduler \
-- python -m otcore.mcp_server <graph>