events_create
events_create
Schedule a reminder or event at a given time; optionally repeating, and optionally running a prompt through the agent when it fires
Free. This one only touches this instance's own storage, so there is nothing to charge for.
Runs on Events — Calendar: what is scheduled, and when you are free.
Arguments
| Name | Type | What it is |
|---|---|---|
title* | string | What to be reminded about, e.g. 'Call the dentist' |
when* | string | When to fire, RFC3339 with timezone offset, e.g. 2026-07-22T15:00:00+01:00 |
note | string | Optional extra detail |
minutes | number | How long it lasts in minutes (default 30) |
repeat | string | How often it recurs: hourly, daily, weekly or monthly. Omit for once |
prompt | string | Optional instruction to run through the agent when it fires, e.g. "brief me on today's news". The answer is mailed to you |
Calling it
Three doors onto the same method. MCP is what an agent speaks, REST is what a program speaks, and the answer is identical.
{"id":1,"jsonrpc":"2.0","method":"tools/call","params":{"arguments":{"title":"title","when":"when"},"name":"events_create"}}Try it in the playground.


