# Crontap > Crontap is a hosted scheduler for developers and operators: it runs recurring HTTP requests to any API, webhook, or cloud function you control. Describe schedules in plain English or standard cron, attach headers and JSON bodies, set per-schedule timezones, and get alerts when a run fails, times out, or returns an error. Crontap is part of the [Apihustle](https://apihustle.com/) suite. The web app is used to create and manage schedules; most programmatic access uses the public REST API at `https://api.crontap.com/` with `ApiKey` and `ClientId` request headers (credentials come from the logged-in account). - Automatic retries with exponential backoff on failed runs; Pro, Ultra, and legacy Pro can tune the per-schedule policy. ## Pricing Crontap uses a single combined cap covering schedules, uptime monitors, and heartbeats. Pricing is set with a slider on the [/pricing](https://crontap.com/pricing) page; this section enumerates every option for crawlers and assistants. - **Starter**: $0/mo forever. Up to 2 combined schedules, uptime monitors, and heartbeats. 1 uptime monitor at 1-day cadence. 1 heartbeat at hourly cadence. 100 schedule history entries per schedule. - **Pro**: $2.99/mo to $7.99/mo. Combined schedules, uptime monitors, and heartbeats at 1-minute cadence. 1,000 history entries per schedule. Schedule grouping included. AI integrations on daily-cadence schedules (1 per schedule). - Pro 3: $2.99/mo or $23.99/yr ($2.00/mo effective). Up to 3 combined items. - Pro 5: $3.59/mo or $28.99/yr ($2.42/mo effective). Up to 5 combined items. - Pro 10: $4.99/mo or $39.99/yr ($3.33/mo effective). Up to 10 combined items. Most popular. - Pro 15: $6.49/mo or $51.99/yr ($4.33/mo effective). Up to 15 combined items. - Pro 20: $7.99/mo or $63.99/yr ($5.33/mo effective). Up to 20 combined items. - **Ultra**: $11.99/mo to $199.99/mo. Combined schedules, uptime monitors, and heartbeats at 1-minute cadence. Everything in Pro plus API access, priority support, AI integrations on hourly-cadence schedules (unlimited per schedule), and 10,000 history entries per schedule. - Ultra 25: $11.99/mo or $95.99/yr ($8.00/mo effective). Up to 25 combined items. - Ultra 50: $19.99/mo or $159.99/yr ($13.33/mo effective). Up to 50 combined items. - Ultra 100: $34.99/mo or $279.99/yr ($23.33/mo effective). Up to 100 combined items. - Ultra 250: $69.99/mo or $559.99/yr ($46.67/mo effective). Up to 250 combined items. - Ultra 500: $119.99/mo or $959.99/yr ($80.00/mo effective). Up to 500 combined items. - Ultra 1000: $199.99/mo or $1,599.99/yr ($133.33/mo effective). Up to 1000 combined items. - **Custom**: More than 1,000 combined items, SSO, dedicated support, contractual SLA. Contact [support@crontap.com](mailto:support@crontap.com). ## API & developer reference - [Crontap public API (OpenAPI / Swagger UI)](https://api.crontap.com/docs/): Interactive reference—base URL `api.crontap.com`, auth via `ApiKey` and `ClientId` headers. - Agent-critical API routes: `GET /v1/account` for caps and usage; `POST /v1/schedule/preview` for plain-English cron previews; explicit schedule pause/resume routes; cursor-paginated schedule history; heartbeat pings and monitor probes. - Resource management routes: schedules, heartbeats, and uptime monitors are available over authenticated `GET`, `POST`, `PUT`, and `DELETE` endpoints under `/v1`. - [API documentation portal](https://docs.crontap.com/): Product-linked docs URL (content may be hosted on a third-party doc platform; prefer the Swagger UI above for the live HTTP contract). - [Crontap on GitHub](https://github.com/crontap/crontap): Source and issue reporting for the product. ## MCP for AI agents Crontap's production remote MCP server is `https://mcp.crontap.com/mcp`. It lets supported AI clients create and inspect HTTP schedules, uptime monitors, and heartbeats. The client initiates tool calls; Crontap MCP does not wake an agent or schedule a recurring chat prompt. - [Crontap MCP landing page and guide hub](https://crontap.com/mcp) - Cursor: add `{"mcpServers":{"crontap":{"url":"https://mcp.crontap.com/mcp"}}}` to `~/.cursor/mcp.json`. - Claude: Open Customize, then Connectors. Choose "+", then Add custom connector. Enter https://mcp.crontap.com/mcp as the remote MCP server URL. - Claude Code: run `claude mcp add --transport http crontap https://mcp.crontap.com/mcp`. - ChatGPT: Open Settings, then Security and login, and enable Developer mode. Open ChatGPT Plugins, then choose the plus button to create an app. Enter https://mcp.crontap.com/mcp as the MCP Server URL. - Codex CLI: run `codex mcp add crontap --url https://mcp.crontap.com/mcp`, then `codex mcp login crontap`. - VS Code: add `{"servers":{"crontap":{"type":"http","url":"https://mcp.crontap.com/mcp"}}}` to `.vscode/mcp.json`. - Devin Local: run `devin mcp add crontap https://mcp.crontap.com/mcp`, then `devin mcp login crontap`. - Gemini CLI: run `gemini mcp add --transport http crontap https://mcp.crontap.com/mcp`. Other compatible clients can use their documented remote Streamable HTTP MCP setup with `https://mcp.crontap.com/mcp`, then complete OAuth. This is generic compatibility guidance, not a verified client entry. ### MCP client guides - [Create a Cursor cron job for an HTTP endpoint in 5 minutes](https://crontap.com/mcp/cursor-cron-jobs) - [Create a Claude cron job with a custom connector](https://crontap.com/mcp/claude-cron-jobs) - [Create and debug an HTTP cron job from Claude Code](https://crontap.com/mcp/claude-code-cron-jobs) - [Create an HTTP cron job with ChatGPT and Crontap](https://crontap.com/mcp/chatgpt-cron-jobs) - [Create a Codex cron job for a protected API sync](https://crontap.com/mcp/codex-cron-jobs) - [Create an HTTP cron job from VS Code Copilot Chat](https://crontap.com/mcp/vscode-copilot-cron-jobs) - [Devin cron jobs: manage an API with Crontap MCP](https://crontap.com/mcp/devin-cron-jobs) - [Create a Gemini CLI cron job for a service endpoint](https://crontap.com/mcp/gemini-cli-cron-jobs) - [Schedule a Lovable Supabase function with Crontap MCP](https://crontap.com/mcp/lovable-schedule-tasks-with-mcp) - [Schedule a Bolt server function with Crontap MCP](https://crontap.com/mcp/bolt-schedule-tasks-with-mcp) - [Schedule a Replit API route with Crontap MCP](https://crontap.com/mcp/replit-schedule-tasks-with-mcp) - [OpenAI Agents SDK cron jobs with approved API tools](https://crontap.com/mcp/openai-agents-sdk-cron) - [Schedule API calls with an AI assistant](https://crontap.com/mcp/manage-scheduled-api-calls-with-ai) - [Debug a failed HTTP cron job with AI](https://crontap.com/mcp/debug-failed-cron-jobs-with-ai) - [Heartbeats for scheduled AI jobs](https://crontap.com/mcp/ai-agent-heartbeat-monitoring) - [Replace Vercel Cron from your editor](https://crontap.com/mcp/replace-vercel-cron-from-your-editor) - [Create timezone-safe recurring HTTP jobs](https://crontap.com/mcp/timezone-safe-recurring-jobs) - [Can MCP run on a schedule? Agent automations vs HTTP schedulers](https://crontap.com/mcp/can-mcp-run-on-a-schedule) ## Agent Skills Crontap publishes 12 readable Agent Skills for schedule, retry, uptime, heartbeat, migration, and debugging workflows. Skills provide instructions; MCP provides authenticated access to a user's Crontap account. - Install: `npx skills add Crontap/skills` - [Crontap Agent Skills on GitHub](https://github.com/Crontap/skills) - [Crontap Agent Skills on skills.sh](https://skills.sh/crontap/skills) - [Crontap Agent Skills catalogue](https://crontap.com/skills) - Skills and MCP are independent but complementary. MCP provides live account access on every Crontap tier. Raw API credentials are available on Ultra only. ## Product & site - [Home](https://crontap.com/): Value proposition, feature overview, scheduling and observability, FAQs, and links to the app. - [Pricing](https://crontap.com/pricing/): Tiers, limits, and feature comparison. - [Uptime monitoring](https://crontap.com/uptime): Probe any URL on an interval, keep 90 days of history, and alert on downtime. - [Heartbeat monitoring](https://crontap.com/heartbeats): Give recurring jobs a secret ping URL and alert on silence or explicit failure. - [Cron job monitoring](https://crontap.com/cron-job-monitoring): Schedule HTTP jobs, inspect run history, and alert on failed calls. - [Slack, Discord and Telegram alert channels](https://crontap.com/blog/introducing-slack-discord-telegram-alerts): Connect chat destinations once, set defaults by product area, and override notification routing per entity. - [About](https://crontap.com/about/): Company and product context. - [Use cases](https://crontap.com/use-cases/): Index of common patterns. - [Scheduled AI / LLM jobs](https://crontap.com/use-cases/scheduled-ai-jobs) - [Automated data sync](https://crontap.com/use-cases/automated-data-sync) - [Scheduled reports & digests](https://crontap.com/use-cases/scheduled-reports) - [Scheduled social posts](https://crontap.com/use-cases/scheduled-social-posts) - [Cache warming & pre-render](https://crontap.com/use-cases/cache-warming) - [Team notifications](https://crontap.com/use-cases/team-notifications) - [Alternatives & comparisons](https://crontap.com/alternatives/): How Crontap positions vs other tools. ## Integration guides (blog) - [Slack alerts for cron jobs and uptime](https://crontap.com/guides/slack-alerts-for-cron-jobs-and-uptime) - [Discord alerts for cron jobs and uptime](https://crontap.com/guides/discord-alerts-for-cron-jobs-and-uptime) - [Telegram alerts for cron jobs and uptime](https://crontap.com/guides/telegram-alerts-for-cron-jobs-and-uptime) - [Zapier webhook integration](https://crontap.com/blog/integrate-cron-schedule-with-zapier-webhook) - [Make (Integromat) webhook integration](https://crontap.com/blog/integrate-cron-schedule-with-make-webhook) - [IFTTT & Twitter / X](https://crontap.com/blog/integrate-cron-schedule-with-ifttt-and-twitter) - [Zapier + Airtable](https://crontap.com/blog/integrate-cron-schedule-with-zapier-and-airtable-webhook) - [Make + Airtable](https://crontap.com/blog/integrate-cron-schedule-with-make-and-airtable-webhook) - [n8n workflows via webhook](https://crontap.com/blog/schedule-n8n-workflows) - [Zapier: custom intervals (e.g. every 5 minutes)](https://crontap.com/blog/schedule-zapier-custom-interval) - [Cron syntax cheat sheet](https://crontap.com/blog/cron-syntax-cheatsheet) - [Webhooks: overview and usage](https://crontap.com/blog/webhook-overview-and-usage) - [AI brand monitor: Crontap + Llama (example)](https://crontap.com/blog/ai-brand-monitor-with-llama) - [Blog index](https://crontap.com/blog/): All guides and updates. ## Tools - [Cron job debugger (single expression)](https://tool.crontap.com/cronjob-debugger): Free expression parser and next-run preview. - [Multiple cron job debugger](https://tool.crontap.com/cronjob-debugger/multiple-cronjobs): Debug several expressions on a calendar. ## Optional - [Sign up / app](https://crontap.apihustle.com/crontap): Create an account to manage schedules in the UI. - [Terms](https://crontap.com/terms/): Terms of service. - [Privacy policy](https://crontap.com/privacy-policy/): Data handling and privacy. - [Partners](https://crontap.com/partners/): Partner information. - [Report an issue (GitHub)](https://github.com/crontap/crontap/issues/new) - [Crontap on X (Twitter)](https://twitter.com/crontapp)