Error: 404 {"type":"error","error":{"type":"not_found_error" が出て、Claude Fable 5 が使えないと返ってくるときに確認したことこの症状は、Claude Code がリクエスト先から
Error: 404 {"type":"error","error":{"type":"not_found_error","message":"Claude Fable 5 is not available. Please use Opus 4.8. Learn more: https://www.anthropic.com/news/fable-mythos-access"}}
を受け取って止まるケースです。issue 群では同じ文言が繰り返し報告されていました。たとえば #68290、#68381、#68188、#76316 です。
まず切り分けたいのは、「自分の環境だけの壊れ方か」「モデル選択や認証まわりで同じメッセージが返っているだけか」です。今回の issue では、少なくとも見えている範囲では Fable 5 が利用できない旨の 404 が中心で、#76316 ではそれに加えて 401 の Invalid authentication credentials も見えています。つまり、同じ見た目でも原因が一つとは限りません。
筆者環境で claude doctor を実行すると、インストール状態は次のように出ました。
$ claude doctor
Claude Code doctor
Running: native (2.1.207)
Commit: bc512d563325
Platform: darwin-arm64
Path: ~/.local/share/claude/versions/2.1.207
Config install method: native
Search: OK (bundled)
Auto-updates: enabled
Auto-update channel: latest
Last update attempt: none recorded
Multiple installations found
- npm-global at /usr/local/bin/claude
- native at ~/.local/bin/claude
Remote Control
Control this session from claude.ai/code or the Claude mobile app
1 warning found
- Leftover npm global installation at /usr/local/bin/claude
Fix: Run: npm -g uninstall @anthropic-ai/claude-code
For a full setup checkup that can also fix issues, run /doctor in a Claude Code session.
この出力から実際に言えるのは、筆者環境では 2.1.207 が動いていて、Multiple installations found と Leftover npm global installation の警告が出ていることです。ここから先、古い版が原因であるとか、これが 404 の直接原因だとかまでは断定できません。少なくとも「複数インストールがある」という事実は確認できています。
issue 側では、#68381 に環境情報が載っていて、Platform: linux、Terminal: vscode、Version: 2.1.173 でした。エラー本文には Claude Fable 5 is not available. Please use Opus 4.8. が入っています。#68188 でも同じエラー文字列が出ています。つまり、少なくとも 2.1.173 では同様の報告があり、特定の端末だけの話ではなさそうです。ただし、これも「同じエラーが出た」という事実以上には広げられません。
#68290 は、エラー文そのものよりも、consent の割り込みが多すぎて作業が進まないという文脈で報告されています。報告者は、短い文章を書いている間に何度も consent が入る、と述べています。ここから読み取れるのは、404 そのものに加えて、承認フローが細かく挟まることで体感がかなり悪化していることです。もしあなたのケースが「404 が出るだけ」ではなく「同時に consent が何度も出る」なら、この issue に近い可能性があります。
現時点で確実に言えるのは、少なくとも issue 群では次の二点です。ひとつは Claude Fable 5 is not available. Please use Opus 4.8. という 404 が複数環境で出ていること。もうひとつは、Invalid authentication credentials が混ざる例もあることです。なので、画面にこの 404 が出たからといって、即座に「モデル名だけが悪い」とは言い切れません。認証失敗や、複数インストールの混在も一緒に見たほうがよさそうです。
筆者環境で確認できた範囲では、まず claude doctor の結果を見て、複数インストールの警告が出ていないかを確認するのが筋です。少なくとも今回の出力では、npm-global at /usr/local/bin/claude と native at ~/.local/bin/claude が併存していました。ここが気になるなら、doctor が明示している npm -g uninstall @anthropic-ai/claude-code を実行する余地はあります。ただし、これをやれば 404 が直るとまでは確認できていません。
issue 側でも、#68290 と #76316 は closed / open が分かれています。つまり、少なくとも公開 issue の段階では単一の解決済みバグとして収束していません。見えているのは「同じエラー文字列が出る複数報告」がある、というところまでです。
同じ症状かどうかを見分ける目安を、確認できた事実だけで挙げるとこうなります。Error: 404 の本文に Claude Fable 5 is not available. Please use Opus 4.8. が入っている。claude doctor で複数インストールの警告が出る。あるいは、Invalid authentication credentials も同時に見える。ここまで一致するなら、少なくとも今回の issue 群とかなり近いです。
claude --version : 2.1.207 (Claude Code)
OS : Darwin 25.3.0 (arm64)
Python : 3.14.2
検証日時 : 2026-08-20T00:09:35+09:00
参照した Issue(anthropics/claude-code): #68290, #68381, #76316, #68188