Development
Parse cron schedules, validate standard or Quartz syntax, and visualize the next execution times on a timeline and grouped calendar view
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/cron-expression-visualizer' \
-H 'Content-Type: application/json' \
-d '{"cronExpression":"30 9 * * 1-5","cronFormat":"standard","occurrences":10,"startDate":"2026-03-22T08:00:00+08:00"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/cron-expression-visualizer| Name | Type | Required | Description |
|---|---|---|---|
| cronExpression | text | Yes | — |
| cronFormat | select | No | — |
| occurrences | number | No | — |
| startDate | text | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-cron-expression-visualizer": {
"name": "cron-expression-visualizer",
"description": "Parse cron schedules, validate standard or Quartz syntax, and visualize the next execution times on a timeline and grouped calendar view",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=cron-expression-visualizer",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "cron-expression-visualizer",
"arguments": {
"cronExpression": "30 9 * * 1-5",
"cronFormat": "standard",
"occurrences": 10,
"startDate": "2026-03-22T08:00:00+08:00"
}
}
}Questions or issues? Contact [email protected]