Anthropic's new model in May 2026, and the one thing that decides whether your tool can use it

M
Matthew Diakonov
6 min read
Direct answer, verified May 25, 2026

The newest generally available Anthropic model is Claude Opus 4.7, which shipped on April 16, 2026. No brand-new generally available Claude model launched during May 2026 itself.

The May 2026 model headline is Mythos: on May 25, 2026 Anthropic said it intends to make Mythos-class models available through a general release in the near future, once it has built stronger safeguards. Mythos is currently restricted to Project Glasswing partners and is not selectable in any everyday product.

Sources: anthropic.com/news/claude-opus-4-7, red.anthropic.com/2026/mythos-preview.

People typing this question are usually doing one of two things: checking whether they are running the latest Claude, or deciding whether to wait for something newer before they commit to a tool. Both are reasonable. But the more useful answer is not the model name. It is whether the app you run will even let you pick the next model when it lands, or whether you will be stuck on whatever string the developer hardcoded until they cut a release. That second question is the one this page actually answers, with code.

The recent Anthropic timeline, in plain dates

Here is the short, verifiable version of what changed leading into May 2026. Dates are from Anthropic's own posts and the GitHub changelog.

DateWhat happenedAvailable to you?
Apr 7, 2026Anthropic publishes the Mythos Preview write-up, describing a Claude model that autonomously finds and exploits software vulnerabilities.No, restricted (Project Glasswing)
Apr 16, 2026Claude Opus 4.7 becomes generally available across the apps, API, Bedrock, Vertex AI, and Foundry. Pricing unchanged from 4.6.Yes, this is the newest GA model
May 2026No new generally available Claude model. Anthropic states intent to eventually release Mythos-class models publicly once safeguards are ready.Opus 4.7 remains current

So if you arrived hoping for a fresh May drop to chase, there is not one for everyday use. The interesting question moves elsewhere.

The real question: can your tool use the next model on day one?

Most apps that wrap a Claude model ship with the model identifier baked into the binary. When Anthropic renames or releases something, that app cannot offer it until the maintainer notices, updates the string, and ships a build. You wait on their release cadence, not Anthropic's. This is exactly the friction the May 2026 searches are circling: the model exists, but my tool still shows me the old one.

Fazm is built the other way around. It wraps the real Claude Code agent loop over ACP (the Agent Client Protocol), and it asks that backend which models exist instead of deciding for you. When a new model becomes resolvable on your Claude account, it shows up in the picker without a Fazm update. The diagram below is the whole path.

How a new Anthropic model reaches the Fazm picker

Anthropic ships model
Your Claude account
Claude Code over ACP
updateModels()
Model picker

The code that makes that true

This is not a marketing claim. The model list in Fazm's control bar is a published property that gets recomputed from the ACP response. The relevant method lives in Desktop/Sources/FloatingControlBar/ShortcutSettings.swift. It takes whatever models the backend advertises and merges them into the picker, falling back to a small static set only until the live list arrives:

/// Available models for Ask Fazm. Updated dynamically from ACP SDK;
/// falls back to defaults.
@Published var availableModels: [ModelOption] = ShortcutSettings.defaultModels

/// Update the Claude half of the model list from the ACP SDK response.
func updateModels(_ acpModels: [(modelId: String, name: String, description: String?)]) {
    guard !acpModels.isEmpty else { return }
    // ...map each advertised modelId into a picker entry...
    lastClaudeModels = newModels
    recomputeAvailableModels()
}

There are two details in that file worth calling out, because they are the reason a model transition does not break you:

  • The default is a fallback, not a pin. The static defaultModels list exists only so the picker is not empty before ACP replies. The moment the backend reports its real list, recomputeAvailableModels() replaces it. Your visible options track the backend, not a frozen constant.
  • Older pinned ids are migrated forward. A helper, normalizeModelId, maps the legacy default alias and prior-pinned Opus versions (the file literally cites claude-opus-4-5) onto the current canonical Opus id, so a stored preference from an older build still resolves to a real, current model instead of silently falling back to something else.

The same pattern is used for the other backends. The Gemini entries are deliberately the un-versioned gemini-flash-latest and gemini-pro-latest aliases, with an in-file note that this is so the picker auto-rolls when Google ships a new generation. The design philosophy is consistent: prefer the latest-resolving alias over a hardcoded version, so the tool ages gracefully instead of needing a release every time a vendor moves.

Pinned model wrapper vs. a dynamic model list

The difference matters most exactly when a new model lands, which is what you are searching about.

FeatureTypical hardcoded wrapperFazm
Where the model list comes fromHardcoded string compiled into the buildLive from the Claude Code ACP backend at runtime
When a new Anthropic model shipsWait for the maintainer to update and re-releaseAppears in the picker once your account resolves it
Whose plan is billedOften a third-party key with its own markupYour own Claude Pro or Max account
Old stored model preference after a version changeCan break or silently fall backMigrated forward to the current canonical id

Availability still follows your Claude account's entitlements. Fazm does not grant access to a model your plan cannot resolve; it just stops getting in the way once your plan can.

What Mythos does and does not mean for you

Because Mythos is the only genuinely new model in the May 2026 conversation, it is worth being precise. Mythos is a security-focused Claude that, per Anthropic's own preview, found thousands of real vulnerabilities during testing, including a 27-year-old OpenBSD bug and a 16-year-old FFmpeg flaw that prior tooling had missed. Anthropic explicitly said it does not plan to make the preview generally available, and on May 25, 2026 framed a future public release as conditional on safeguards that, by its own admission, no company has built yet.

For day-to-day coding, browser work, or desktop automation, none of that changes your options today. The model you should expect to be running is Opus 4.7. If and when a Mythos-class model reaches general release, a tool that reads its model list from the backend will surface it the same way it surfaced every Opus before it: as a new entry, when your account can resolve it, without you reinstalling anything.

Want the next model the day it lands, not the day a release ships?

Walk through how Fazm reads its model list from your own Claude Code backend, live on a call.

Questions people actually ask about this

What is Anthropic's newest model as of May 2026?

Claude Opus 4.7. It became generally available on April 16, 2026 and remains the newest production Claude model through late May 2026. No additional generally available Claude model shipped during May itself. Opus 4.7 is offered across the Claude apps and API, Amazon Bedrock, Google Cloud Vertex AI, and Microsoft Foundry, at the same price as Opus 4.6: $5 per million input tokens and $25 per million output tokens.

Did Anthropic release a new model in May 2026?

Not a new generally available consumer or developer model. The May 2026 model news is about Mythos. On May 25, 2026 Anthropic stated it intends to make Mythos-class models available through a general release in the near future, once it has built stronger safeguards. Until then Mythos is restricted to Project Glasswing partners and is not something you can select in any everyday product.

What is Claude Mythos?

Mythos is a Claude model that is unusually strong at finding and exploiting software vulnerabilities. Anthropic's Mythos Preview write-up (published April 7, 2026) describes it autonomously discovering zero-day bugs in operating systems, browsers, and cryptographic libraries, including a 27-year-old OpenBSD bug and a 16-year-old FFmpeg flaw. Because that capability is dual-use, Anthropic restricted it rather than shipping it broadly, and said no company has yet built safeguards strong enough to release such a model safely.

If a new Anthropic model ships, do I have to update my app to use it?

It depends entirely on how your app sources its model list. Apps that hardcode a model identifier need a new release before you can pick the new model. Fazm does not hardcode the list. Its model picker is populated at runtime from whatever the agent backend (Claude Code over ACP) advertises, so a newly resolvable model appears as soon as your Claude account and Claude Code know about it, with no Fazm update required.

Does the new model count against my own Claude plan in Fazm?

Yes. Fazm runs on your own Claude Pro or Max account through Claude Code, so model usage hits your existing plan and entitlements. That also means model availability follows your account: if your plan can resolve the newest Opus, the picker offers it.

Where can I verify the model dates myself?

Anthropic's Opus 4.7 announcement is at anthropic.com/news/claude-opus-4-7, and the GitHub changelog dates general availability to April 16, 2026. The Mythos Preview write-up is at red.anthropic.com/2026/mythos-preview/. The public-release intent was reported on May 25, 2026.

How did this page land for you?

React to reveal totals

Comments ()

Leave a comment to see what others are saying.

Public and anonymous. No signup.