← Reddit

Do Cowork scheduled tasks sync across machines on the same account

Reddit · dev-beatss · May 14, 2026
A user running a weekly scheduled task in Cowork on a MacBook inquired whether the scheduled task will automatically sync to a new Mac mini when logging in with the same Claude account. The user expressed concern about potential duplicate task execution if both machines remain awake simultaneously and sought clarification on whether Cowork implements primary device logic to prevent redundant runs.

Detailed Analysis

A Reddit user running automated workflows through Claude Desktop's Cowork feature raises a technically precise and practically important question about multi-machine account behavior: specifically, whether scheduled tasks are stored at the account level and synced across devices, or whether they are local to the machine on which they were created. The user has built a functioning weekly task that triggers a local MCP (Model Context Protocol) server and stores outputs in a designated project folder on a MacBook, and is now migrating that workflow to a Mac mini for always-on reliability — a common architectural shift as users move from casual experimentation to persistent, production-style AI automation.

The core ambiguity the post surfaces involves two distinct but related problems. The first is a data-persistence question: does Cowork store task schedules in Claude's cloud-synced account infrastructure, or does the schedule exist only in local application state? The second is a concurrency-control question: if schedules do sync, is there any logic to prevent multiple awake machines from simultaneously executing the same task, potentially triggering duplicate MCP calls and producing redundant or conflicting outputs? The user correctly identifies that these are not the same problem — sync without deduplication logic could be worse than no sync at all, introducing race conditions into what was previously a clean single-machine workflow.

This question reflects a maturing pattern in how power users are deploying Claude. As MCP server support has expanded Claude Desktop's capability to interact with local tools, filesystems, and APIs, users are increasingly building scheduled, agent-like workflows that run with minimal human oversight. The move from a laptop to a dedicated always-on mini is a meaningful infrastructure commitment, signaling that these automations have graduated from experiments to relied-upon processes. The absence of clear documentation on multi-device scheduling behavior is a notable gap, as enterprise and prosumer users need deterministic execution guarantees — the kind of "exactly once" semantics that distributed systems engineers treat as a foundational requirement.

More broadly, the post illustrates a tension at the frontier of local AI tooling: consumer-grade applications like Claude Desktop are being pushed into workflows that demand server-grade reliability and coordination guarantees. Features like scheduled tasks and MCP integrations were likely designed with single-device use in mind, but users are naturally composing them into multi-node architectures. The questions being asked here — about primary device election, distributed lock behavior, and idempotency — are the same questions that arise when any stateful service is scaled horizontally, and they suggest that Anthropic's desktop tooling will face increasing pressure to address multi-device orchestration explicitly as its power-user base grows.

Read original article →