Scheduling & Cron
MCPs for cron jobs, reminders, and scheduled tasks
TL;DR
Scheduling MCP servers expose cron-style and natural-language scheduling tools so agents can set up recurring or future tasks. Pair with other MCPs (database, Slack, GitHub) to create time-triggered workflows without writing cron files. Essential for proactive agents.
About Scheduling & Cron
Scheduling MCPs let agents set up recurring tasks, one-off future triggers, and human-readable reminders. Think 'every Monday at 9am, check the Stripe dashboard and summarize.'
Common use cases
- Run a weekly report every Monday morning
- Check Product Hunt for new launches at 8am daily
- Set a one-off reminder: 'ping me in 3 hours'
- Schedule a database backup nightly at 2am
- Trigger competitor monitoring every 6 hours
Related recipes
Crypto Price Alerts
Monitor cryptocurrency prices and receive Slack alerts when assets cross custom thresholds or drop more than 5% in an hour.
Competitor Watch Automation
Run daily Perplexity searches on competitors and log product updates, pricing changes, and news to a Notion tracker.
Product Hunt Scraper Alert
Scrape Product Hunt daily with Firecrawl and send trending posts in your category to Slack so your team never misses a launch.
Related tags
Frequently asked questions
Can I use natural language for schedules?
Yes — most scheduling MCPs accept expressions like 'every Monday at 9am', 'in 3 hours', or 'tomorrow at noon' in addition to classic cron syntax.
What happens if my MCP server is down at trigger time?
Depends on the server. Temporal and Airflow guarantee at-least-once execution with retries; simple cron MCPs fire-and-forget.
Can scheduled tasks call multiple other MCPs?
Yes. The scheduler wakes an agent, and the agent orchestrates calls to other MCPs — giving you complex multi-step cron jobs with no custom code.
Is this better than Cloud Scheduler or EventBridge?
For agent-driven tasks, yes — the scheduler and the agent speak the same protocol. For pure infra cron (backups, GC), native cloud services are fine.
Install Scheduling & Cron MCPs
Browse the full directory or explore all tags to find the right MCPs for your stack.