superagnt_
// platform tool

Cron schedules for AI agents

Give an agent a cron expression and a prompt. Every firing starts a fresh session with that input, in the timezone you name.

opt in // schedulesworkspace mcp server

Copy the setup prompt.
Your agent does the rest.

works with any agent+ 8 more
Fetch and execute the appropriate instructions to set me up for superagnt_ from https://mcp.superagnt.com/agent-setup/prompt.md
or follow the detailed setup instructions

» once it is connected, run this so your agent can switch the source on itself.

agnt_tools_enable({ families: ['schedules'] })
01// what is inside

Everything your agent can do with it

Cron plus prompt

agnt_schedules_create takes a cron expression, a timezone, and the input text the agent receives when it fires.

Live on create

A schedule starts running as soon as it is created. Pass enabled false when you want to stage it before it goes live.

A session per firing

Each run is a fresh, billed agent session, so a run does not inherit yesterday state unless the agent wrote it down.

Edit in place

agnt_schedules_update changes the cron, timezone, input text or name, recomputes the next run time, and applies immediately.

Pause instead of delete

Setting enabled false stops firing without losing the schedule. Delete is not reversible from this surface.

Inspect

agnt_schedules_list shows the schedules on a deployed agent with their next run time.

tool names04as your agent sees them
agnt_schedules_createagnt_schedules_listagnt_schedules_updateagnt_schedules_delete
02// what it gets used for

Three jobs it can start on today

01

A daily briefing that reads live data

Every weekday at 7am the agent pulls what changed overnight, writes the summary, and sends it where your team already looks.

02

Monitoring on a cadence

Every hour the agent checks a source, compares it against what it stored last run, and speaks up only when something crossed a threshold.

03

Recurring maintenance

A weekly run re-enriches stale records, retries what failed, and reports the rows it could not fix.

03// cost

What it costs to run

billing
usage, not a per-tool fee

Platform tools carry no per-tool price. What you pay is the AI and credit usage the work causes, on the same workspace balance every other tool draws from.

Each run is itemized, so you can see which agent spent what and on which call.

how credits work →
04// questions

Before you wire it up

01How do I turn schedule tools on?

The schedules family is elevated, so agnt_tools_enable refuses it. A person enables it on the dashboard MCP page, because a schedule commits the workspace to recurring billed runs.

02Does a new schedule start immediately?

Yes. It is live as soon as it is created unless you pass enabled false, and every firing is a real billed session.

03How do I pause one?

Update it with enabled false. Prefer that over delete, which is not reversible from this surface.

04What does the agent receive when it fires?

The input text set on the schedule, delivered as the first message of a fresh session.

get your key

Point your client at https://mcp.superagnt.com/mcp and your agent has this, plus everything else on one balance.

Start free
05// keep going

The rest of what your agent can reach