Anthropic Claude Fable 5 MCP server — top-tier planning and code critique for handoff
Anthropic Claude Fable 5 MCP server — top-tier planning and code critique for handoff. That is what the fable mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
An MCP (Model Context Protocol) server for Anthropic Claude Fable 5 — Anthropic's most capable, most expensive model ($10 / $50 per 1M input / output tokens, ~2× Opus). Built in Rust, it exposes Fable as specialized MCP tools (plan, critique, ask) so any MCP client can use them.
The server publishes 3 tools. What each one is for:
plan — Flagship. Turn a goal (+ optional context) into an executor-ready implementation plan: numbered steps, exact paths/signatures, edge casescritique — Coverage-first review of code, a diff, or a design. Reports every finding with severity + confidence for downstream filtering. Optional focusask — Raw one-shot query to Fable. Multi-turn history, system prompt, effort, optional reasoning summary~/.config/mcp-server-fable/config.toml containing at minimum your api_key. See config.toml.example. ```toml api_key = "sk-ant-..."Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Fable's toolset — plan, critique, ask — is a fair guide to whether it matches your workflow. It is maintained by codeChap; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Fable's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| plan | **Flagship.** Turn a goal (+ optional context) into an executor-ready implementation plan: numbered steps, exact paths/signatures, edge cases, acceptance criteria, out-of-scope notes — written to be handed to a cheaper m |
| critique | Coverage-first review of code, a diff, or a design. Reports every finding with severity + confidence for downstream filtering. Optional focus. |
| ask | Raw one-shot query to Fable. Multi-turn history, system prompt, effort, optional reasoning summary. |
~/.config/mcp-server-fable/config.toml containing at minimum your api_key. See config.toml.example. ```toml api_key = "sk-ant-..."Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.