PCCheck MCP Server
Provides internet speed testing via Cloudflare's speed test endpoint and network latency checks via pings to Cloudflare DNS (1.1.1.1).
Enables GPU information retrieval including model, VRAM, driver version, live utilization, and temperature readings when an NVIDIA GPU is present.
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., "@PCCheck MCP ServerWhy is my PC so slow?"
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.
Ask Claude "why is my PC slow?" and get a real answer โ not generic advice.
PCCheck is an MCP server that gives Claude read-only eyes into your computer: hardware specs, live CPU/GPU/RAM load, temperatures, disk space hogs, startup bloat, crash history, wifi quality, and a real speed test. Claude stops guessing and starts diagnosing.
๐งโโ๏ธ "Your GPU is fine and your CPU is idling โ but Chrome is holding 9GB of RAM, your C: drive is 96% full, and there's a 20GB VM image in Downloads you probably forgot about. Delete that and you'll feel the difference." โ the kind of answer this unlocks
What you can ask
๐ "Run a full checkup on my PC"
๐ "Why is my computer so slow right now?"
๐ "My PC got slower lately โ what changed?"
๐พ "What's eating my disk space?"
๐ฎ "Can my PC run Cyberpunk 2077 at 1440p?" / "Why does my game stutter?"
๐ฅ "Why did my PC crash yesterday?"
๐ถ "Is my wifi the problem, or my internet provider?"
โก "How fast is my internet actually?"
๐ฅ "Is my PC running too hot?"
๐งน "Roast my startup programs."
๐ "Should I replace my laptop battery?"
Related MCP server: System Info MCP Server
What you need
The Claude Desktop app (Windows or Mac โ the free plan works) or Claude Code. The claude.ai website and the mobile app can't run local extensions โ they can't see your PC.
PCCheck is Windows-first (crash logs, antivirus status, startup toggles are Windows-only for now); specs, performance, disk, network, and speed checks also work on macOS and Linux.
Install
Option 1 โ Claude Desktop, one click (recommended)
Download
pccheck.mcpbfrom the latest releaseDouble-click it (or drag into Claude Desktop โ Settings โ Extensions)
Click Install. No terminal, no Node.js, nothing else.
Check it worked: ask Claude "run a full checkup on my PC." The first time, Claude will ask permission for each tool โ click Allow. (PCCheck also adds one-click prompts to Claude Desktop's + menu: Full PC checkup, Why is my PC slow?, Free up disk space.)
Option 2 โ Claude Code (one command)
claude mcp add pccheck -- npx -y pccheck-mcpOption 3 โ any MCP client (manual config)
{
"mcpServers": {
"pccheck": {
"command": "npx",
"args": ["-y", "pccheck-mcp"]
}
}
}On Windows, if your client needs it: "command": "cmd", "args": ["/c", "npx", "-y", "pccheck-mcp"].
Note: npx install requires the package on npm โ until
pccheck-mcpis published there, use the.mcpbrelease file (Option 1) or clone +npm run build+ point your config atdist/index.js.
What Claude sees (15 tools)
Tool | Answers | Platforms |
| "Check my PC" โ everything below in one call, ~20s | all |
| "What are my specs?" / "Can I run this game?" | all |
| "Why is it slow right now?" โ live load + top processes | all |
| "How much is Chrome using?" | all |
| GPU model, VRAM, driver, live utilization, display refresh rates | all (live stats: NVIDIA) |
| "Is it running hot?" โ CPU/GPU temps + healthy ranges | all (best on NVIDIA) |
| Drive fullness + SSD/HDD health (SMART) | all |
| "What's eating my disk?" โ ranks folders by size | all |
| Boot bloat, including which items are actually enabled | Windows (basic on Mac/Linux) |
| Router vs internet pings โ "bad wifi" vs "bad ISP" (latency & loss) | all |
| "How fast is my internet?" โ actual download Mbps | all |
| "It got slower recently" โ diff vs the last checkup | all |
| Blue screens, freezes, app crashes, antivirus, pending reboots | Windows |
| Biggest / most recent installs โ find the bloat | Windows (names-only on Mac) |
| Wear level, cycle count, charge state | all |
Privacy & safety โ read this, it's honest
Read-only by design. No tool can change, delete, install, or configure anything on your system. The worst PCCheck can do is look. The single exception to "writes nothing":
what_changedkeeps one snapshot file in~/.pccheckso it can tell you what changed later โ delete it anytime. (~1,500 lines of TypeScript, 3 runtime dependencies โ auditable in one sitting.)PCCheck itself sends nothing about you anywhere. No telemetry, no accounts, no external APIs. Its only network activity: the latency test in
network_check(standard pings to your router,1.1.1.1,8.8.8.8) andspeed_test, which downloads throwaway data from Cloudflare's public speed endpoint โ nothing is uploaded.But be clear about how MCP works: results Claude asks for become part of your Claude conversation, which is processed by Anthropic like anything else you type. Depending on what you ask, that can include:
If Claude callsโฆ
Your conversation will containโฆ
system_overviewPC model, hostname, hardware specs
scan_folder_sizesfolder/file names (incl. your Windows username in paths)
installed_softwarenames of installed programs
network_checkyour wifi network name (SSID)
crash_reportcrash-log excerpts
Don't want something seen? Don't ask about it โ tools only run when Claude calls them for your request, and you can see every call in the chat.
No admin rights needed. Everything works as a normal user (Windows hides CPU temperature from non-admin processes โ GPU temp still works).
File and program names on your disk are treated as data, not instructions โ but as with anything an AI reads, weirdly-named files could try to influence the conversation. Read-only design caps the blast radius.
FAQ
Can it delete/change/"fix" things itself? No. Every tool is read-only by design โ Claude diagnoses and tells you how to fix things yourself. That's a feature, not a limitation.
Does it work on claude.ai in my browser? No โ local extensions need the Claude Desktop app or Claude Code.
Does the free Claude plan work? Yes.
Mac/Linux? Yes for specs, performance, disk, network, speed test, battery. Crash logs, antivirus, and startup-toggle detail are Windows-only right now.
How do I uninstall? Claude Desktop: Settings โ Extensions โ PCCheck โ Remove. Claude Code: claude mcp remove pccheck.
Troubleshooting
"CPU temperature unavailable" โ Windows blocks this for non-admin processes; it's expected. GPU temperature (NVIDIA) still works.
Claude doesn't show the tools โ fully quit Claude Desktop (system tray โ Quit) and reopen; extensions load at startup.
npxinstall fails on Windows โ use thecmd /cvariant shown above, or the.mcpbfile which needs no Node at all.A scan times out โ every tool is time-boxed on purpose; ask Claude to try again with a smaller scope (a subfolder instead of all of
C:\) or a longer time budget.
Development
git clone https://github.com/jjackk0k/pccheck-mcp
cd pccheck-mcp
npm install
npm run build
npm run smoke # exercises all 15 tools over real stdio JSON-RPCCI runs the same smoke suite on Windows and Linux runners for every push.
Roadmap
Deeper macOS/Linux parity (startup items, installed apps with sizes)
Optional LibreHardwareMonitor bridge for full sensor data (CPU temp without admin)
"What changed since yesterday?" snapshot diffing
License
MIT โ see LICENSE.
Built for the person whose family asks them to fix the computer. Now Claude can be that person.
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/jjackk0k/pccheck-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server