F4 Crash Doctor
Allows looking up mod information on Nexus Mods and verifying authentication via an API key.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@F4 Crash DoctorDiagnose my last Fallout 4 crash"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
F4 Crash Doctor
Advisory-only Fallout 4 crash diagnosis for Claude Desktop, Claude Code, or any MCP client.
When your modded Fallout 4 crashes, this tool reads the crash log, your load order, and your game setup, then explains the likely cause and fix in plain English — right inside your Claude conversation.
It is an MCP server — MCP (Model Context Protocol) is the standard way to give an AI assistant like Claude safe, well-defined abilities on your PC. This one gives Claude the ability to read your Fallout 4 crash information, nothing more.
Safety promise
This tool never writes, moves, deletes, or modifies any file. Ever.
It has zero tools capable of changing anything — every tool it exposes is read-only. It only looks at your crash logs, your plugin list, and your game folder, then tells you what it found.
Because it never touches your install, it works safely alongside Vortex or Mod Organizer 2. It even detects which mod manager you use, so the advice you get is phrased for your setup (e.g. "disable this in Vortex" vs "untick it in MO2's left pane").
Related MCP server: mcp-doctor
What you need
Windows 10 or 11
Fallout 4 (Steam) with:
F4SE (Fallout 4 Script Extender — a loader many mods require, run via
f4se_loader.exe)Buffout 4 — the mod that actually writes crash logs when the game crashes. Without it there is nothing to diagnose. Get it here: https://www.nexusmods.com/fallout4/mods/47359
uv — a small free tool that runs Python programs without any setup on your part. One-line install in PowerShell:
winget install astral-sh.uvor, if winget isn't available:
irm https://astral.sh/uv/install.ps1 | iex
You do not need to install Python yourself — uv handles it.
Install
Easiest: the one-file bundle (Claude Desktop)
Download f4-crash-doctor.mcpb from the latest release, then in Claude Desktop open
Settings → Extensions → Advanced settings and click Install Extension… — pick the
downloaded file. (Drag-and-dropping the file onto the Extensions page works on some machines, but
Windows refuses the drop with a 🚫 cursor when it doesn't know the .mcpb file type — the
Install Extension… button works everywhere.) Claude Desktop asks two optional questions
(game folder — leave empty to auto-detect; Nexus API key — skip unless you want mod lookups), and
you're done. Skip straight to First use below.
Manual install (Claude Code, other MCP clients, or if you prefer a terminal)
Download or clone this repository somewhere permanent, e.g.
C:\Tools\f4-crash-doctor.Open a terminal (PowerShell) in that folder.
Run:
uv syncThis downloads the few libraries the tool needs. It takes a few seconds and only needs to be done once.
Hook it up to Claude Desktop
Open your Claude Desktop config file. It lives at:
%APPDATA%\Claude\claude_desktop_config.json(Paste that path into the File Explorer address bar. If the file doesn't exist, create it.)
Add this block (or merge
f4-crash-doctorinto an existingmcpServerssection):{ "mcpServers": { "f4-crash-doctor": { "command": "uv", "args": ["run", "--directory", "C:\\path\\to\\f4-crash-doctor", "f4-crash-doctor"] } } }Replace
C:\\path\\to\\f4-crash-doctorwith the real path to this folder, keeping the double backslashes (e.g.C:\\Tools\\f4-crash-doctor).If the server never shows up in Claude (the most common setup hiccup): Claude Desktop may not find
uvright after you install it, because the updated PATH hasn't reached Claude yet. The reliable fix is to use the full path to uv.exe as the command instead of just"uv":"command": "C:\\Users\\<your-username>\\.local\\bin\\uv.exe"(That's where both installers put it. To confirm, run
where.exe uvin PowerShell.) Alternatively, sign out of Windows and back in — or reboot — so the new PATH reaches every program, and keep"command": "uv".Restart Claude Desktop (fully quit from the system tray, then reopen).
Hook it up to Claude Code
One command:
claude mcp add f4-crash-doctor -- uv run --directory C:\path\to\f4-crash-doctor f4-crash-doctorAgain, replace the path with the real location of this folder.
First use
After your next crash, just ask:
"Diagnose my last Fallout 4 crash."
Claude should call scan_game_environment and diagnose_crash and walk you through what happened and what to do about it.
For a guided, step-by-step diagnosis workflow, use the built-in prompt diagnose-fallout4-crash (in Claude Desktop it appears in the prompts/attachments menu once the server is connected).
Optional: Nexus Mods lookups
Two tools (lookup_mod and check_nexus_auth) can fetch mod info from Nexus Mods, which needs a free personal API key:
Get your key from nexusmods.com → your avatar → Settings → API Keys.
Provide it one of two ways:
Create a file named
.envin the repository folder containing:NEXUS_API_KEY=your-key-hereOr add it to the Claude Desktop JSON block:
"f4-crash-doctor": { "command": "uv", "args": ["run", "--directory", "C:\\path\\to\\f4-crash-doctor", "f4-crash-doctor"], "env": { "NEXUS_API_KEY": "your-key-here" } }
Everything else works without a key — only the two Nexus tools need it.
The tools (all read-only)
Tool | What it does |
| Lists your Buffout 4 crash logs, newest first |
| Reads and parses one crash log (newest by default) |
| Reads your plugin load order and cross-checks it against your Data folder |
| Checks game version, F4SE, Buffout 4, Address Library, and which mod manager you use |
| The full pipeline: parses the log, scans your setup, and matches known crash signatures |
| Looks up a mod on Nexus Mods (needs API key) |
| Confirms your Nexus API key works (needs API key) |
Troubleshooting
Dragging the
.mcpbonto Extensions shows a 🚫 no-drop cursor — your Windows has no.mcpbfile association, so the drop (and double-clicking the file) has nowhere to go. Use Settings → Extensions → Advanced settings → Install Extension… instead — it always works.The server doesn't appear in Claude / never connects — almost always Claude Desktop failing to find
uv. Use the full path touv.exeas the"command"(see the note in the install section above: usuallyC:\\Users\\<your-username>\\.local\\bin\\uv.exe), or sign out of Windows and back in so the freshly installeduvis on every program's PATH. Also double-check the config file is valid JSON (a missing comma is enough to break it) and that you fully quit Claude Desktop from the system tray before reopening."No crash logs found" — Buffout 4 hasn't logged a crash yet. The folder
Documents\My Games\Fallout4\F4SE\Crash Logsis only created the first time the game actually crashes with Buffout 4 installed. If the game has crashed but there's still no log, double-check Buffout 4 is installed and loading.OneDrive moved my Documents folder — handled automatically; the tool asks Windows where your real Documents folder is. If it still looks in the wrong place, set the environment variable
F4_DOCS_DIRto your Documents path (the one containingMy Games).Game installed somewhere unusual — the tool finds Steam libraries automatically, but if your Fallout 4 lives somewhere it can't find, set
F4_GAME_ROOTto the folder containingFallout4.exe.
For developers
uv sync # install dependencies (note: needs src/f4_crash_doctor present; harmless to re-run)
uv run pytest # run the test suiteSource layout: src/f4_crash_doctor/ (package), tests/ (pytest), src/f4_crash_doctor/data/ (signature knowledge pack, calibration profile, prompt kit — data, not code), packaging/ (MCPB bundle build — uv run python packaging/build_mcpb.py).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Apocalypse-Meow/f4-crash-doctor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server