org.memoryapi/cron
Official4 toolsTask Scheduler
Schedule and manage recurring or one-shot tasks
Schedule and manage recurring or one-time automated tasks.
Captured live from the server via tools/list.
schedule_task
Register a persistent cron schedule that runs even when your agent session ends. Specify a URL to call, how often, and for how long.
Parameters (6)
- agent_idstringrequired
Your agent identifier
- urlstringrequired
HTTPS URL to call on each execution
- methodstring
HTTP method: GET or POST (default: GET)
- bodystring
Optional JSON body for POST requests
- interval_minutesnumberrequired
How often to run (minimum 15 minutes)
- duration_daysnumber
How many days to keep running (max 30, default 7)
check_schedule
Check the status of a cron schedule — is it active, when does it next run, how many times has it executed?
Parameters (2)
- schedule_idstring
Schedule UUID from registration
- agent_idstring
Alternatively list all schedules for this agent
cancel_schedule
Cancel an active cron schedule to stop all future executions immediately.
Parameters (2)
- schedule_idstringrequired
Schedule UUID to cancel
- agent_idstring
Agent ID for ownership verification
get_execution_history
View recent execution history for a schedule — status codes, response previews, and timing.
Parameters (2)
- schedule_idstringrequired
Schedule UUID
- limitnumber
Number of executions to return (max 50)
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"cron": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://cron.memoryapi.org/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.