
TL;DR
Meta open-sourced Muse Glimmer, a 30B Apache 2.0 multimodal agent model that runs in a 24GB envelope at up to 233 tok/s. MCP Atlas 75.5, SWE-Bench Verified 76.0, 131K context. Here is what the numbers actually say.
Meta shipped its first open-weight model built specifically for always-on local agent work on August 10, 2026. Muse Glimmer is a 30B dense multimodal model released under Apache 2.0, distilled from the much larger Muse Spark family, and tuned for the things agents actually do: calling tools, recovering from failures, reading screenshots, and holding 131K-token contexts. Quantized to about 17GB it runs inside a 24GB VRAM envelope, and with Meta's DFlash speculative decoding it hits 233.4 tokens per second on an RTX 5090. A local model that is agent-first rather than chat-first, at that size and price, is new for this class.
| Resource | Description |
|---|---|
| Meta AI Research announcement | The release post: training recipe, local optimizations, ecosystem plans |
| Hugging Face model card | Full architecture, benchmark table, quantization data, safety evaluation |
| Evaluation methodology report | Sampling configs, benchmark definitions, comparison rules |
| Meta AI Developer Center | Developer docs and scaffold setup guidance |
| DFlash paper (arXiv 2602.06036) | The block-diffusion speculative decoding method Glimmer ships with |
Muse Glimmer is a 29.6B-parameter dense causal transformer with a dedicated ViT-G/14 perception encoder (~1.8B parameters), giving it interleaved text and image input: screenshots, charts, and documents alongside conversation. The 52-layer model uses a repeating local-local-local-global attention pattern, GQA at a 16:1 ratio, and a 131,072+ token context window. Knowledge cutoff is January 4, 2026.
The training story matters as much as the architecture. Glimmer was distilled from Muse Spark with logit distillation, pushed through agent-heavy mid-training with longer reasoning traces, then post-trained with SFT, on-policy distillation, and reinforcement learning across general, reasoning, coding, and agentic domains. The result is a benchmark profile that is agent-shaped: tool orchestration, full-task completion, and failure recovery ahead of its size class.
Three details from the model card are worth calling out:
low / medium / high / xhigh reasoning strengths set through the system prompt, so you can trade think time for latency per workload.All numbers below come from the official Hugging Face model card, which compares Glimmer in high-reasoning mode against Gemma4-31B and Qwen3.6-27B, both in thinking mode. Meta's methodology states that for other models it reports the most favorable result between self-reported scores and internal reproductions, so this is a conservative-to-flattering baseline; read the wins as directional until independent runs land.
Chart: Meta AI Research (via the Muse Glimmer announcement)
| Category | Benchmark | Glimmer-30B | Gemma4-31B | Qwen3.6-27B |
|---|---|---|---|---|
| General agentic | MCP Atlas (Public) | 75.5 | 54.2 | 62.5 |
| General agentic | DeepSearch QA | 74.6 | 61.7 | 71.1 |
| General agentic | tau3-Banking | 23.5 | 15.1 | 16.7 |
| General agentic | WildClawBench | 47.6 | 37.6 | 43.2 |
| General agentic | GAIA2 | 43.3 | 36.4 | 40.0 |
| General agentic | OSWorld-Verified | 65.9 | 58.5 | 75.6 |
| Agentic coding | SWE-Bench Pro | 51.2 | 36.9 | 50.2 |
| Agentic coding | SWE-Bench Verified | 76.0 | 66.6 | 77.2 |
| Agentic coding | TerminalBench 2.1 | 51.7 | 43.4 | 60.7 |
| Agentic coding | SciCode | 43.6 | 43.4 | 39.8 |
| Reasoning | AIME 2026 | 94.7 | 89.2 | 94.1 |
| Reasoning | GPQA Diamond | 83.5 | 85.7 | 84.2 |
| Reasoning | AA-LCR | 80.0 | 68.3 | 73.3 |
| Long context | Beam128K | 65.1 | 58.2 | 63.0 |
| Instruction following | IFBench | 77.0 | 76.0 | 70.8 |
The pattern is clear: Glimmer wins where tools and long-horizon orchestration are measured (MCP Atlas, DeepSearch QA, SWE-Bench Pro, WildClawBench) and on reasoning (AIME 2026, AA-LCR), while Qwen3.6-27B keeps the lead on GUI/OS tasks (OSWorld-Verified 75.6 vs 65.9) and terminal coding (TerminalBench 2.1 at 60.7 vs 51.7). The MCP Atlas gap is the biggest single number: 75.5 against 62.5 for Qwen, 54.2 for Gemma. For anyone building local agents on Model Context Protocol servers, that is the metric that matters. One honest caveat: the comparison target is Qwen3.6, which is four months old, and a Qwen3.8-27B is expected this week.
From the archive
Aug 9, 2026 • 10 min read
Aug 9, 2026 • 7 min read
Aug 9, 2026 • 7 min read
Aug 8, 2026 • 9 min read
This is where Meta did the work that makes the release meaningful. At full precision the model needs over 55GB, which rules out consumer hardware. Meta ships two official 4-bit quantizations and publishes the degradation numbers for both:
| Variant | Target hardware | Degradation (avg across 15 benchmarks) |
|---|---|---|
| Full precision (BF16) | 64GB VRAM | - |
| K-Quant-Dynamic | 32GB VRAM | 0.2% |
| K-Quant-17GB | 24GB VRAM | 1.0% |
Chart: Meta AI Research (via the Muse Glimmer announcement)
The K-Quant-17GB model fits the language model under 20GB at roughly 4-bit precision, leaving room for the KV cache, the perception encoder, and the drafter inside a 24GB or 32GB envelope. Speed is addressed the same way: Glimmer ships with a DFlash block-diffusion drafter that proposes 16-token blocks in one forward pass and lets the main model verify them in parallel.
Chart: Meta AI Research (via the Muse Glimmer announcement)
| GPU | No speculation | With DFlash drafter | Speedup |
|---|---|---|---|
| Nvidia RTX 5090 | 74.9 tok/s | 233.4 tok/s | 3.1x |
| Apple M5 Max | 26.6 tok/s | 50.2 tok/s | 1.8x |
| Apple M4 Max | 23.7 tok/s | 37.8 tok/s | 1.5x |
Mac measurements used ExecuTorch, the RTX run used llama.cpp, batch size 1 with greedy decoding. The 24GB class was previously the province of models that either decoded slowly or could not hold an agentic context; Glimmer claims both problems are addressed in one release.
As of August 10, 2026, Muse Glimmer is not available in OpenCode's model catalog (checked opencode models --verbose - no Muse entry). The model is open weights, so the fast path is the vendor ecosystem instead:
pip install vllm
vllm serve "meta-models/Muse-Glimmer-30B"
Or with Transformers directly:
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("meta-models/Muse-Glimmer-30B")
model = AutoModelForMultimodalLM.from_pretrained("meta-models/Muse-Glimmer-30B", device_map="auto")
For local apps, the model card already lists 7 community quantizations and the official announcement says llama.cpp, MLX, ExecuTorch, Ollama, LM Studio, and Unsloth integrations land in the coming days. If you run on a 5090 or a 32GB Mac, this is the first strong open-weight option for a genuinely local agent loop: tools, screenshots, long context, all offline. If your machine is a 16GB laptop or a DDR5 mini-box, the dense architecture means you are memory-bandwidth bound and an MoE model in the same class will decode faster.
The dominant reaction is relief that Meta is shipping open weights again, and praise for how much work went into the local story rather than just the model. There is real excitement about the tool-calling numbers, with the MCP Atlas result read as the headline: local agents that can drive MCP servers competently are the missing piece for self-hosted setups.
The main skepticism centers on benchmark selection: Glimmer is compared against a four-month-old Qwen3.6-27B right before Qwen3.8-27B ships, which several commenters read as deliberate timing, and the wins beyond tool calling are close. The dense-vs-MoE debate is loud too. A dense 30B is bandwidth-bound on anything without fast VRAM, so commenters estimate single-digit-to-15 tok/s on DDR5 machines, versus the 233 tok/s Meta publishes for the 5090 with the drafter.
The memory question dominates the practical talk. 24GB VRAM is still not what most laptops have, and 32-64GB Macs are expensive; a recurring calculation is whether a 4,000 euro machine beats a few hundred dollars of API tokens over a couple of years. The counterpoint lands just as often: the point of local is not price, it is that nothing leaves the machine, there are no rate limits, and context can include your own private history. There is also the usual open-weights-versus-open-source terminology debate, with the nuance that Apache 2.0 allows modification and redistribution even if training source is not published.
Three reasons this release is more than another benchmark post.
The 27-30B class just became the agent battleground. DeepSeek V4 Flash already runs locally on a 4090 with enough system RAM, which we covered in our DeepSeek V4 Flash 0731 guide. Now Meta enters the same class tuned for tool orchestration, and a Qwen3.8-27B lands this week. Three serious open-weight local agent models in one week of news means the local tier finally has real choices.
Agent-first training is now separable from frontier size. The old assumption was that tool use and failure recovery required frontier-scale models. Glimmer's MCP Atlas and SWE-Bench Pro numbers put that capability in a 24GB envelope at 1.0% quantization cost. For self-hosted setups, sandboxed agent deployments (see our agent sandbox architecture guide), and anything privacy-constrained, that is a material change.
The honest hardware tables are the actual product. Meta published quantization degradation (0.2% at 32GB, 1.0% at 24GB) and real measured decode speeds instead of marketing numbers. That lets developers decide: if you have a 5090 or 32GB Mac, Glimmer is likely your best local agent today; if you are on DDR5, an MoE rival serves you better. We built the GPU-routing case for this in our ZLuda guide for running CUDA models on AMD GPUs.
This is Meta's strongest open-weights release since the Llama 3 era, and the first aimed at running agents, not chatbots, on your own hardware. The tool-calling edge is real and the ecosystem integrations are coming this week. Watch the Qwen3.8-27B numbers when they land - the next round of this comparison will be much closer.
The weights are open under Apache 2.0 and free to download from Hugging Face. You pay only for the hardware and electricity to run it; there is no per-token pricing because Meta ships no hosted offering.
It depends. The K-Quant-17GB variant targets 24GB VRAM with about 1.0% average degradation; K-Quant-Dynamic targets 32GB. Macs with 32GB+ unified memory can run it via MLX or ExecuTorch (37.8 tok/s on M4 Max, 50.2 on M5 Max, both with the drafter).
With the DFlash drafter, Meta measures 233.4 tok/s on an RTX 5090, 50.2 tok/s on an M5 Max, and 37.8 tok/s on an M4 Max; 74.9 tok/s on the 5090 without it. Decode speed is memory-bandwidth bound on non-HBM machines.
Not yet. As of August 10, 2026 there is no Muse entry in the OpenCode model catalog. Use vllm serve "meta-models/Muse-Glimmer-30B" or wait for the llama.cpp, Ollama, and MLX integrations Meta announced for the coming days.
Glimmer leads on tool orchestration (MCP Atlas 75.5 vs 62.5), DeepSearch QA (74.6 vs 71.1), SWE-Bench Pro (51.2 vs 50.2), and AIME 2026 (94.7 vs 94.1). Qwen3.6 leads on OSWorld-Verified (75.6 vs 65.9), TerminalBench 2.1 (60.7 vs 51.7), and SWE-Bench Verified (77.2 vs 76.0). The comparison is against the four-month-old Qwen3.6; Qwen3.8-27B is expected this week.
| Source | URL |
|---|---|
| Meta AI Research announcement | https://research.meta.ai/blog/introducing-muse-glimmer-open-agentic-model |
| Hugging Face model card: meta-models/Muse-Glimmer-30B | https://huggingface.co/meta-models/Muse-Glimmer-30B |
| Evaluation methodology report | https://research.meta.ai/static/muse-glimmer-methodology |
| Meta AI Developer Center | https://developer.meta.com/ai/models/muse-glimmer/ |
| DFlash paper | https://arxiv.org/abs/2602.06036 |
Last updated: August 10, 2026
Read next
Meta released Muse Code, a terminal coding agent, and Muse Spark 1.2 on August 5, 2026. The model co-trains with the harness, logs every call to a replay-safe event log, and offers a $0.10/$0.20 contributor tier if Meta may train on your data.
7 min readDeepSeek shipped the official V4 Flash release on July 31, 2026. The re-post-trained 0731 build beats V4-Pro-Preview on agent benchmarks at $0.14/$0.28 per million tokens. Here is what changed and how to run it through OpenCode today.
7 min readMCP lets AI agents connect to databases, APIs, and tools. Here is what it is and how to use it in your TypeScript projects.
5 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Open-source OpenAI API replacement. Runs LLMs, vision, voice, image, and video models on any hardware - no GPU require...
View ToolMeta's open-source model family. Llama 4 available in Scout (17B active) and Maverick (17B active, 128 experts). Free to...
View ToolAlibaba's flagship open-weight coding model. 480B total parameters, 35B active (MoE). Native 256K context, scales to 1M....
View ToolOpenAI's open-source terminal coding agent built in Rust. Runs locally, reads your repo, edits files, and executes comma...
View ToolConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsWhat MCP servers are, how they work, and how to build your own in 5 minutes.
AI AgentsInstall Ollama and LM Studio, pull your first model, and run AI locally for coding, chat, and automation - with zero cloud dependency.
Getting Started
Buzz by Block: Open-Source Slack-Style Collaboration for Humans + AI Agents (Demo & Setup) Check out Arcade: https://arcade.dev.plug.dev/xiDRwlA Repo: https://github.com/block/buzz The video introd...

Introducing Swarm: OpenAI's New Multi-Agent Orchestration Framework Learn The Fundamentals Of Becoming An AI Engineer On Scrimba; https://v2.scrimba.com/the-ai-engineer-path-c02v?via=developersdig...

Links: https://ai.meta.com/blog/code-llama-large-language-model-coding/ https://labs.perplexity.ai/ FOLLOW ME → Website: https://dub.sh/dev-digest → X/Twitter: https://dub.sh/dd-x →...

Meta released Muse Code, a terminal coding agent, and Muse Spark 1.2 on August 5, 2026. The model co-trains with the har...

DeepSeek shipped the official V4 Flash release on July 31, 2026. The re-post-trained 0731 build beats V4-Pro-Preview on...

MCP lets AI agents connect to databases, APIs, and tools. Here is what it is and how to use it in your TypeScript projec...

AI agents are getting their own computers. Here is how to choose a sandbox architecture: filesystem isolation, network p...

ZLUDA 6 lets AMD GPUs run unmodified CUDA applications, adding PhysX support, Blender textures, and better Windows tooli...

Nvidia, Microsoft, Meta, OpenAI, and 30+ signatories published an open letter arguing that open-weight AI models are ess...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.