Meta Drops Muse Glimmer: A Serious AI Agent Now Runs on Your Laptop, for Free
Meta just put a genuine multi-step agent on consumer hardware and gave the weights away under Apache 2.0. The cloud labs charging by the token should be paying attention.
What is Muse Glimmer?
Muse Glimmer is a 30-billion-parameter open-weight model Meta released on 10 August 2026, built for always-on local agent workflows and licensed under Apache 2.0. Distilled from Muse Spark, it runs on a single consumer GPU or a Mac, handles tool calls and multi-hour tasks, and costs nothing per token because inference happens on your own machine.
TL;DR
- Meta shipped Muse Glimmer on 10 August 2026 — ~29.6B parameters, 131,072-token context, 100+ languages, Apache 2.0 on Hugging Face.
- It fits on hardware you can actually buy. Quantisation shrinks the language model to under 20 GB, targeting a 24 GB or 32 GB VRAM envelope (Meta AI Research, 2026).
- It is tuned for agents, not chat — tool use, long tasks and failure recovery, with a category-leading 75.5 on MCP-Atlas.
- The economics flip from opex to capex. No per-token bill, but you own the hardware, the updates and the babysitting.
- It is not the smartest model in its class. Independent testing puts it behind Qwen3.6 27B on general intelligence and flags a high hallucination rate.
Why is this release a big deal?
Local models are not new. Local models that can finish a job are.
Meta's own demo makes the point better than any benchmark. Given one natural-language prompt, Muse Glimmer "autonomously discovers a local Home Assistant instance via network tool calls, queries device APIs, writes a responsive HTML/CSS/JS dashboard from scratch, and deploys a local server for verification" (AI at Meta, 2026). That is discovery, API reasoning, code generation and deployment — chained, unsupervised, offline.
Meta framed the release in ideological terms. "Rather than centralizing superintelligence, we should distribute it widely and give every person the ability to direct it," Mark Zuckerberg wrote (Engadget, 2026). The commercial subtext is harder to miss: every agent loop that runs on your GPU is a loop that never bills through someone else's API.
What's actually inside the model?
The Hugging Face model card gives the specifics: roughly 29.6B parameters across 52 layers with a 6,656 hidden dimension, a dedicated ViT-G/14 perception encoder of about 1.8B parameters for multimodal input, and a stated context length of 131,072+ tokens.
Two engineering choices make it viable on a laptop:
Aggressive quantisation. Full precision would need over 55 GB. Meta compressed the weights to approximately 4-bit, bringing the language model "under 20 GB" — the K-Quant-17GB variant targets 24 GB VRAM at a stated ~1.0% degradation (Meta AI Research, 2026).
Speculative decoding. A lightweight companion network called DFlash drafts tokens ahead of the main model. Meta reports decode-speed gains of 3.1× on an RTX 5090, 1.8× on an M5 Max and 1.5× on an M4 Max — the difference between an agent that feels responsive and one you abandon.
"We designed Muse Glimmer to balance capability against the memory and compute constraints of local hardware," Meta said (Engadget, 2026).
How good is it, really?
Good at agent work. Middling at raw intelligence. Both things are true.
On Meta's published comparisons against its closest open rivals, Muse Glimmer leads where it was designed to lead:
| Benchmark | Muse Glimmer 30B | Qwen3.6 27B | Gemma4 31B | |---|---|---|---| | MCP-Atlas (agentic tool use) | 75.5 | 62.5 | 54.2 | | DeepSearch QA | 74.6 | 71.1 | 61.7 | | SWE-Bench Verified | 76.0 | 77.2 | 66.6 | | OSWorld-Verified | 65.9 | 75.6 | — | | GAIA2 | 43.3 | 40.0 | 36.4 |
Source: Meta benchmark comparisons as reported by OrcaRouter, 2026. Meta reports leading Gemma4-31B and Qwen3.6-27B on five of eight general-agentic benchmarks.
Meta also reports 51.2 on SWE-Bench Pro, 94.7 on AIME 2026 and 83.5 on GPQA Diamond (Hugging Face model card).
Now the counterweight. Independent evaluation from Artificial Analysis scored Muse Glimmer at 35 on its Intelligence Index — behind Qwen3.6 27B at 38 and Kimi K2.5 at 36. More pointedly, it recorded an 82% hallucination rate against Qwen3.6 27B's 49%, and 953 Elo on GDPval-AA v2, below the 1,000 human baseline. It did score 44 on the Openness Index, ahead of most open models, and performed strongly on Tau3-Banking tool use at 24%.
Read that as a specialist, not a generalist. It calls tools reliably; it should not be trusted as a source of facts without grounding.
Does running agents locally actually save money?
Yes on inference. Not automatically on total cost.
Muse Glimmer is also available as a hosted API — $0.30 per million input tokens and $1.20 per million output tokens on OpenRouter, or $0.35 and $1.50 on Together AI. Those are the numbers you avoid by running it yourself.
Work an example. An always-on agent generating 20 million output tokens a month costs roughly $24/month at OpenRouter's rate — call it $288 a year, per agent. Run five such agents and you are near the price of a used GPU inside eighteen months. (Arithmetic on the published rates above; your token volumes will differ.)
The structural point is sharper than the arithmetic. "Meta just made agents a capital expense instead of an operating one," Noah Kenney of Digital 520 told Computerworld.
That cuts both ways, and the same piece collects the warnings. "I wouldn't assume that moving inference from the cloud to the endpoint automatically produces lower total cost of ownership," said Justin Greis of Acceligence. Gartner's Arun Chandrasekaran was blunter: "Enterprise customers are asking for a car and Meta is delivering an engine." Deployment, patching, security, model updates and hardware refresh do not disappear — they move onto your plate.
For a solo creator or a small team, the maths is genuinely compelling: one GPU, no meter. For a fleet of a thousand endpoints, it is a procurement project.
How do you run Muse Glimmer locally?
Meta shipped it into the tooling people already use. Per Meta's developer page, supported paths include:
- Ollama — the shortest route from zero to a running model on a Mac or PC.
- LM Studio — a desktop GUI, and Meta explicitly calls out agentic task support.
- llama.cpp — GGUF k-quants for maximum control over quantisation and memory.
- vLLM or SGLang — when you want throughput and a proper serving layer.
- Unsloth — running plus fine-tuning on a single machine.
If you are on NVIDIA hardware, NVIDIA's technical blog reports over 20K tokens/sec/GPU at BF16/NVF4 precision, with deployment paths through NIM containers and fine-tuning via NeMo AutoModel (full SFT, LoRA, and RL through NeMo RL). It runs across RTX 5090, DGX Spark, DGX Station and Jetson for edge deployments.
Practical starting point: pull the K-Quant-17GB build if you have a 24 GB card, enable the DFlash drafter, and give the agent a narrow, well-instrumented task before you trust it with anything that writes to disk.
Is it really "open source"?
No — it is open-weight, and the distinction matters.
Engadget put "open source" in scare quotes throughout its coverage for good reason. The Open Source Initiative is explicit that open weights "do not include" the training code or the training dataset, and that they "fall short" of the freedoms required to use, study, modify and share a system. Its verdict: open weights "might seem revolutionary at first glance, but they're merely a starting point."
Apache 2.0 on the weights is still meaningfully permissive — you can deploy commercially, modify and redistribute without a bespoke Meta licence, which is a real change from the Llama community licences. Just do not confuse that with reproducibility. You cannot audit what you cannot rebuild.
Who should actually switch?
Strong fit: privacy-sensitive workflows, home and building automation, always-on background agents, offline or air-gapped environments, high-volume repetitive tool calling, and anyone whose API bill has become a line item they resent.
Poor fit: tasks needing frontier reasoning, factual output without retrieval grounding (see that 82% hallucination figure), teams with no one to own the hardware, and anything where a wrong answer is expensive.
The honest framing: Muse Glimmer is not a replacement for a frontier model. It is a replacement for the cheap tier of your cloud bill — the routine, high-frequency agent calls that never needed a frontier model in the first place. That tier is where a lot of API revenue quietly lives.
Glossary
- Open-weight — model parameters are published, but training code and data are not. Distinct from open source.
- Quantisation — compressing weights to lower precision (here, ~4-bit) to cut memory use, at a small accuracy cost.
- Speculative decoding — a small "drafter" model proposes tokens the main model verifies in bulk, increasing speed.
- MCP (Model Context Protocol) — a standard for connecting models to external tools; MCP-Atlas benchmarks that ability.
- Agentic workflow — a model planning and executing multiple steps with tools, rather than returning a single response.
Frequently asked questions
What hardware do I need to run Muse Glimmer?
A single consumer GPU with 24 GB or 32 GB of VRAM, or a capable Mac. The 4-bit quantised language model comes in under 20 GB. Meta tested on MacBook M4 Max, M5 Max and RTX 5090 (Meta AI Research, 2026).
Is Muse Glimmer free to use commercially?
Yes. The weights are released under Apache 2.0, a permissive licence allowing commercial use, modification and redistribution. A separate Meta usage policy applies to access. Running it locally incurs no per-token fee.
How does Muse Glimmer compare to Qwen3.6 27B?
It wins on agentic tool use — 75.5 versus 62.5 on MCP-Atlas — but trails on general intelligence and on OSWorld-Verified. Artificial Analysis scored it 35 versus Qwen's 38, with a considerably higher hallucination rate.
Can Muse Glimmer run completely offline?
Yes. Once weights are downloaded, inference requires no network call. Meta designed it for always-on local agents with persistent state across restarts, which is precisely why the Home Assistant demo works without cloud access.
What is the context window?
131,072 tokens or more, per the Hugging Face model card. That is enough for long agent sessions with accumulated tool output, which is the practical constraint for multi-hour autonomous tasks.
Is running agents locally cheaper than using a cloud API?
On inference, yes — there is no per-token charge. On total cost of ownership, not necessarily. Analysts warn that hardware, deployment, patching and refresh cycles can erode the saving, especially at fleet scale.
What to do next
If you have a 24 GB GPU sitting idle, this is the weekend to test it. Pull the quantised build via Ollama, point it at one narrow, well-scoped task you currently pay an API for, and measure two things: how often it completes without intervention, and what that task was costing you per month.
That single comparison will tell you more than any benchmark table — including this one.
Sources
- Meta AI Research — "Introducing Muse Glimmer: An Open Agentic Model That Runs on Your Device", 10 August 2026. https://research.meta.ai/blog/introducing-muse-glimmer-open-agentic-model
- Meta — Muse-Glimmer-30B model card, Hugging Face, 2026. https://huggingface.co/meta-models/Muse-Glimmer-30B
- Meta for Developers — "Muse Glimmer", 2026. https://developer.meta.com/ai/models/muse-glimmer/
- AI at Meta — launch announcement and Home Assistant demo, 10 August 2026. https://x.com/AIatMeta/status/2086757844544811485
- NVIDIA Technical Blog — "Run Local Agentic AI Workflows with Meta's Muse Glimmer on NVIDIA", 2026. https://developer.nvidia.com/blog/run-local-agentic-ai-workflows-with-metas-muse-glimmer-on-nvidia/
- Engadget — "Meta's 'open source' Muse Glimmer model can run on a single computer", August 2026. https://www.engadget.com/2233312/metas-open-source-muse-glimmer-model-can-run-on-a-single-computer/
- Computerworld — "Meta's Muse Glimmer shines light on AI hardware/software cost tradeoff", August 2026. https://www.computerworld.com/article/4207598/metas-new-local-model-forces-enterprises-to-recalculate-ai-costs-and-roi.html
- Artificial Analysis — "Muse Glimmer: Benchmarks and Analysis", 2026. https://artificialanalysis.ai/articles/muse-glimmer
- OpenRouter — Muse Glimmer 30B pricing and providers, 2026. https://openrouter.ai/meta/muse-glimmer-30b
- Together AI — Muse Glimmer API pricing, 2026. https://www.together.ai/models/muse-glimmer
- Open Source Initiative — "Open Weights: not quite what you've been told". https://opensource.org/ai/open-weights
- OrcaRouter — "Muse Glimmer vs Gemma4-31B vs Qwen3.6-27B: Who's Ahead?", 2026. https://www.orcarouter.ai/blog/muse-glimmer-explained

