HomeBlogContactSupport
Currency
Language
Automation

Automation scheduler

Run periodic jobs against the Source Parts MCP server—refresh pricing, re-check alternates, or generate restock plans.

Create recurring jobs

Define cron-style schedules that execute Source Parts actions on cadence. Jobs run inside our infrastructure or you can pull schedules into yours via webhooks.

await client.call("automation.scheduler.create", {
  name: "weekly-price-refresh",
  cron: "0 12 * * MON",
  action: "pricing.syncToErp"
});

Monitor job health

Use `automation.scheduler.history` to track success, retries, and failures. Pair with audit logging to build a compliance trail.

Source Parts MCP scheduler