MCP-TrueNAS
Provides read-only monitoring and management of TrueNAS systems, including storage pools, datasets, snapshots, alerts, services, jobs, apps, shares, network, and backup tasks.
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., "@MCP-TrueNASany alerts on the NAS?"
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.
MCP-TrueNAS
An MCP (Model Context Protocol) server that lets Claude monitor and manage a TrueNAS box in plain English: "any alerts on the NAS?", "how full is tank?", "list snapshots of appdata".
Version 1 is deliberately read-only — every tool observes, nothing mutates.
How it works
┌───────────────── your Windows PC ─────────────────┐
│ │
│ Claude Code ◄── stdio (MCP JSON-RPC) ──► this │ ┌─────────┐
│ (you chat here) server ─┼──────► │ TrueNAS │
│ │ HTTPS/ │ (LAN) │
└─────────────────────────────────────────────────────┘ WSS └─────────┘This server runs on your PC, not on the NAS. Claude Code launches it automatically as a background child process when a session starts (that's what
.mcp.jsonconfigures) and talks to it over stdin/stdout.The server talks to TrueNAS over its network API, authenticating with an API key you generate in the TrueNAS UI.
stdout is sacred: it carries the MCP protocol. All logging goes to stderr (
console.error), neverconsole.log.
Which TrueNAS API? Both.
TrueNAS changed APIs across versions, so the client auto-detects at runtime:
Your TrueNAS | API used | How |
25.04 "Fangtooth" and newer (incl. 26+) | WebSocket JSON-RPC 2.0 at |
|
SCALE ≤ 24.10, CORE 13.x | REST v2.0 at |
|
Version quirks handled for you: the snapshot API rename in 25.10
(zfs.snapshot.query → pool.snapshot.query), {"$date": …} timestamp
objects, and the login-method change coming in TrueNAS 27
(TRUENAS_USERNAME covers it).
Related MCP server: truenas-ws-mcp
File tour
File | Role |
Bootstrap: loads config from | |
Everything TrueNAS: API detection, WebSocket JSON-RPC with reconnect + login, REST fallback, and translation of raw network errors into actionable messages. | |
The MCP surface — every | |
Tells Claude Code how to launch this server (project-scoped registration). | |
Your secrets. Gitignored. |
The tools
All read-only (readOnlyHint: true), all paginate or filter where data can be
large. Each accepts response_format: markdown (default, compact summary) or
json (full structured data). Every tool also declares an outputSchema, so
the structured result is machine-validated by the MCP client.
System & storage
truenas_connection_status— diagnose config/reachability/auth; start here when something failstruenas_get_system_info— version, hostname, uptime, CPU, RAM, loadtruenas_check_updates— whether a base-OS update is available, plus reboot-required statetruenas_list_pools— pool health, capacity, usage %, fragmentation, scrub activitytruenas_list_datasets— space used/available, quotas, compression (filter by pool, paginated)truenas_list_disks— model, serial, size, pool membership, optional temperaturestruenas_list_snapshots— snapshots with creation time and space (filter by dataset, paginated)
Health & activity
truenas_list_alerts— active alerts, filterable by severitytruenas_list_services— SMB/NFS/SSH/… state and boot settingtruenas_list_jobs— background jobs: scrubs, replications, failures
Apps, sharing, backups & VMs — require TrueNAS 25.04+ (WebSocket API)
truenas_list_apps— installed apps and whether an app/image update is available, plus Docker statustruenas_list_shares— SMB shares, NFS exports, and iSCSI targets in one calltruenas_list_network— IP addresses, default routes, DNS, and per-interface link statetruenas_list_replication_tasks— configured ZFS replication (backup) tasks and last-run statetruenas_list_cloudsync_tasks— cloud backup tasks (S3/Drive/B2/…); credentials never showntruenas_list_snapshot_tasks— periodic (automatic) snapshot policy and retentiontruenas_list_scrub_tasks— scheduled pool scrub taskstruenas_list_vms— virtual machines, run state, and resource allocation
Setup
1. Create an API key on TrueNAS
In the TrueNAS web UI: user icon (top right) → My API Keys → Add.
Copy the whole <id>-<secret> string — it is shown exactly once.
An API key inherits the privileges of the user it's linked to. For a
belt-and-braces read-only setup, create a dedicated user whose group has only
the READONLY_ADMIN privilege (Credentials → Groups/Privileges) and link
the key to that user — then even a leaked key can't change anything.
API keys are password-equivalent and bypass 2FA. TrueNAS auto-revokes keys that ever travel over plain HTTP — always use
https://.
2. Configure
copy .env.example .envEdit .env: set TRUENAS_URL and TRUENAS_API_KEY; set
TRUENAS_SKIP_TLS_VERIFY=1 if the NAS uses its default self-signed
certificate.
3. Build
npm installnpm run build4. Register with Claude Code
This repo ships a project-scoped .mcp.json that launches the
server via a relative path (dist/index.js). Once you've built it, Claude
Code asks to approve the server the first time you open a session in this
folder, then launches it automatically thereafter.
To use it from any folder, register it user-wide with the absolute path to your clone:
claude mcp add --scope user --transport stdio truenas -- node /absolute/path/to/MCP-TrueNAS/dist/index.jsCheck it connected with claude mcp list (or /mcp inside a session).
5. Use it
Just ask Claude things like:
"How healthy are my pools?"
"Anything above WARNING in the NAS alerts?"
"Which disks are hottest right now?"
"Are any jobs failing? Show the errors."
Testing without Claude
MCP Inspector is a debugging client. Two flavors:
npm run inspectopens a web UI (browse tools, call them, see raw protocol traffic), or the scriptable CLI:
npx @modelcontextprotocol/inspector --cli node dist/index.js --method tools/call --tool-name truenas_list_poolsExtending: anatomy of a tool
Every tool in src/tools.ts follows one pattern:
server.registerTool(
"truenas_list_pools", // snake_case, service-prefixed
{
title: "List Storage Pools",
description: "…written FOR the model: what it returns, when to use it…",
inputSchema: z.object({ // zod validates before your code runs
pool: z.string().optional().describe("shown to the model too"),
}),
annotations: { readOnlyHint: true, openWorldHint: false },
},
async ({ pool }) => {
try {
const data = await getClient().pools(); // client hides WS-vs-REST
return respond(structured, format, () => markdown);
} catch (error) {
return errorResult(error); // actionable, never a crash
}
}
);To add a write tool later (start a scrub, take a snapshot): add a client
method for the API call, register the tool with honest annotations
(readOnlyHint: false, destructiveHint as appropriate) — Claude Code will
then treat it with matching caution. Rebuild (npm run build) and restart
the session; Claude picks up the new tool automatically.
Troubleshooting
Symptom | Likely cause / fix |
Any tool errors | Ask Claude to run |
"TLS certificate verification failed" | Self-signed cert on the NAS → |
"Cannot reach …" | Wrong |
"TrueNAS rejected the API key" | Key mistyped/revoked — regenerate; copy the whole |
Key suddenly stopped working | Was it ever sent over |
Tools missing in Claude |
|
Security notes
The API key lives only in
.env(gitignored) or the MCP client's env config — never in source, never in chat.v1 tools are read-only by design; the key's user can enforce the same server-side via
READONLY_ADMIN.Plain-HTTP URLs are refused unless
TRUENAS_ALLOW_HTTP=1, because TrueNAS revokes keys observed on unencrypted transport.TLS verification is on unless you explicitly disable it for a self-signed cert.
Some TrueNAS read APIs return secrets (cloud-sync OAuth tokens, a VM's VNC password). The tools that touch those —
truenas_list_cloudsync_tasksandtruenas_list_vms— deliberately project only non-sensitive fields, so no tokens, secrets, or passwords are ever surfaced to the model.
License
MIT © PainInTheNic
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables Claude Desktop and other MCP clients to interact with TrueNAS Core systems through the TrueNAS API, supporting user management, storage operations, sharing, and snapshot creation.2030MIT
- AlicenseBqualityDmaintenanceMCP server for TrueNAS Scale that enables AI assistants to manage storage pools, datasets, apps, VMs, snapshots, and more via the native WebSocket API.59MIT
- Alicense-qualityDmaintenanceExtensible MCP server for managing a homelab from Claude AI, enabling control of VMs, snapshots, services, and files via natural language.MIT
- Alicense-qualityBmaintenanceRead-only MCP server for TrueNAS SCALE 25.10+ that connects via JSON-RPC 2.0 WebSocket API, providing tools to inspect storage, shares, services, system info, jobs, and alerts.25MIT
Related MCP Connectors
Uptime, SSL, DNS and domain monitoring you can talk to from Claude or any MCP client.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/PainInTheNic/MCP-TrueNAS'
If you have feedback or need assistance with the MCP directory API, please join our Discord server