pressable_list_cron_jobs
Retrieve scheduled cron jobs for a WordPress site to monitor automated tasks and maintenance schedules.
Instructions
Get a list of cron jobs for a specific site.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- tools/automation.js:50-52 (handler)The handler function that executes the 'pressable_list_cron_jobs' tool by calling the API.
handler: async (args) => { return await api.get(`/sites/${args.id}/cron_jobs`); } - tools/automation.js:45-49 (schema)The input schema definition for 'pressable_list_cron_jobs'.
inputSchema: { type: 'object', properties: { id: { type: 'string' } }, required: ['id'] }, - tools/automation.js:43-43 (registration)The registration of the 'pressable_list_cron_jobs' tool.
name: 'pressable_list_cron_jobs',