Meta's Muse for Mac Brings Agent Control Over Files, Mail and Calendar
In this article
Meta shipped Muse for Mac on September 17, 2026, nine days after Muse launched on iOS, Android, the web, and WhatsApp on September 8. The Mac release is the first Muse version that executes tasks directly on a user's machine, reading and writing to Files, Mail, Messages, Calendar, and Notes inside their native applications rather than through a browser wrapper or clipboard relay. For developers tracking how agentic systems are being deployed in production, this is a concrete reference implementation from a hyperscaler, not a research prototype.
What Muse for Mac actually does
The agent's practical value is cross-app context aggregation. A conventional chatbot requires the user to manually copy content into a prompt; Muse can pull a Calendar event, a Mail thread, a Messages conversation, and a file from a local folder into a single task context without user assembly. Meta describes three representative task classes: organizing folders, completing partially filled forms by retrieving stored data from local files and calendar entries, and generating end-of-day summaries compiled from email, messages, and notes.
Execution is asynchronous. Muse continues processing in the background after the desktop window is closed, and it maintains a single task thread across Mac, iPhone, Android, and WhatsApp simultaneously — a task started on the Mac can be monitored or nudged from any of those surfaces.
Architecture and isolation model
The cloud backend runs on what Meta calls Muse Secure VM: a dedicated virtual machine per user, isolated at the system level so that no other user's agent instance can reach it. A separate Sentinel agent runs on the same VM, kept apart from Muse at the OS level and acting as the outbound gatekeeper — nothing Muse generates leaves the VM and reaches the internet unless the Sentinel approves it. The underlying model is Muse Spark, described by Meta as its most capable model to date and purpose-built for agentic work; the same model powers Muse Code, Meta's coding agent available for macOS and Windows.
The isolation story has a meaningful caveat: Secure VM prevents lateral access from other users but does not prevent Meta itself from accessing user data when necessary to operate the service. Meta has announced Muse Confidential VM as a planned follow-on, in which the entire VM is encrypted with a key only the user controls. No release date beyond "later in 2026" is given. Meta also operates a public bug bounty for Muse.
Permissions and approval gates
Local data access is governed by an opt-in model at the app level. Each data source — Files, Mail, Messages, Calendar, Notes — requires explicit user activation; Full Disk Access is a separate, optional grant. All permissions are reversible at any time through Settings. Destructive or outbound actions are additionally gated: deleting files or sending messages requires in-context user approval before Muse proceeds. A task can read and reorganize a folder autonomously but must pause and request confirmation before any deletion. The free tier allows up to 100 million tokens per week. Availability is US-only at launch.
| Capability | Requires explicit opt-in? | Requires per-action approval? | Runs offline / on-device? |
|---|---|---|---|
| Read Files / organize folders | Yes (per-source toggle) | No | No — cloud via Secure VM |
| Delete files | Yes | Yes | No |
| Read Mail / Messages / Notes / Calendar | Yes (per-source toggle) | No | No |
| Send a message | Yes | Yes | No |
| Full Disk Access | Optional, separate grant | No | No |
| Outbound internet (Sentinel gate) | Implicit (Sentinel enforces) | Sentinel-mediated | No |
AI Mastery analysis
The Secure VM plus Sentinel architecture is a reasonable first-generation containment model, but it should be read carefully against the emerging standard of infrastructure isolation as the primary AI security control. The Sentinel-as-gatekeeper pattern — a second agent running on the same VM checking the primary agent's outbound traffic — is a software-layer control, not a hardware or hypervisor-level one. Its effectiveness depends entirely on Sentinel's own robustness to adversarial inputs, a non-trivial surface when Muse is processing attacker-controlled content like email bodies or downloaded documents. Prompt-injection via a malicious email instructing Muse to exfiltrate a file is precisely the class of attack this architecture must handle, and Meta has not published a technical specification of how Sentinel evaluates outbound requests.
The Confidential VM announcement is the more architecturally significant commitment. Until keys are user-held, the trust model is operationally identical to any cloud-hosted SaaS product: data isolation from other tenants is real, but the service operator retains access. Developers considering Muse as a reference for their own agent permission designs should treat the current release as demonstrating the UX layer — granular per-source opt-in, per-action approval gates — rather than the full security story.
The 100M token per week free tier suggests Meta is absorbing substantial inference cost to drive adoption, which implies the hosted-model-only positioning is a deliberate strategic choice. The nine-day gap between the mobile launch and the Mac desktop release confirms that shipping velocity, not model capability, is the current differentiator for agentic consumer products. Muse for Mac is also a concrete answer to the long-standing portability and local-context problem: embed the agent at the OS level rather than forcing users to move data to the model. Whether the Sentinel architecture proves robust under adversarial real-world use will determine whether this model becomes a template or a cautionary case study.
Primary source
Frequently asked questions
When did Muse for Mac launch, and where is it available?
Muse for Mac launched on September 17, 2026, nine days after the original Muse debut on iOS, Android, the web, and WhatsApp on September 8. At launch it is available in the US only as a free macOS download.
How much does Muse for Mac cost, and is there a usage limit?
Muse for Mac is free. The free tier allows up to 100 million tokens per week. It is a hosted consumer agent, not a self-hostable open model.
Does Muse for Mac require approval before deleting files or sending messages?
Yes. Destructive and outbound actions — specifically deleting files and sending messages — require explicit in-context user approval before Muse proceeds. Read and organize operations within a folder do not require per-action approval.
What is the Sentinel agent in Muse's architecture?
Sentinel is a separate agent that runs on the same Muse Secure VM as the primary Muse agent, kept apart at the OS level. Nothing Muse generates reaches the internet unless Sentinel approves it. It is a software-layer gatekeeper, not a hypervisor-level control.
What is Muse Confidential VM and when will it be available?
Muse Confidential VM is a planned follow-on to Muse Secure VM in which the entire virtual machine is encrypted with a key only the user holds. Meta has announced it for later in 2026 but has not given a specific release date.
Related Reading
Meta Muse Runs Each User's Agent in a Dedicated Secure Cloud VM
Meta's Muse gives every user an isolated cloud VM, a Sentinel control plane, and surrogate credentials — with a $130,000 bug bounty on injection attacks.
Meta Pays ~95% Discount for Muse Spark Users Who Share Agent Data
Meta's Muse Spark slashes API prices by up to 95% for users who share prompts and outputs — putting an explicit dollar figure on agentic trace data.
zg Unifies ripgrep, BM25, and Vector Search in Two MCP Tools
Qwen developers release zg (zvec-grep), an Apache 2.0 npm tool that puts ripgrep, BM25, and on-device vector search behind two MCP tools — no GPU required.