linux-mcp-server (szoran53/linux-mcp-server) is an MCP server listed on the M8ven Trust Index. It scores 52 out of 100, grade D. It declares 47 tools. No publisher has claimed this listing.
An MCP server for managing Ubuntu/Linux systems, enabling AI assistants to execute commands, manage services, files, logs, and packages via local or SSH connection.
Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.
How we verified
Verified is a snapshot. Live keeps it current, and builds your track record.
⚡ Connect GitHub → continuous verification on every pushwhy connect →Who stands behind it
szoran53
Source: Glama
Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →
Install from
The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.
These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.
read_fileRead the contents of a file. Subject to 1MB output limit.
write_fileWrite text content to a file (creates or overwrites). Text only — binary files are not supported. Requires appropriate filesystem permissions.
list_directoryList directory contents with details (ls -la).
get_file_infoGet file metadata: permissions, owner, size, timestamps (stat).
make_directoryCreate a directory (mkdir -p, creates parent dirs as needed).
delete_fileDelete a file or directory. Set recursive=true to delete non-empty directories.
get_journal_logsFetch systemd journal logs with optional filters. unit: service name, since/until: time range (e.g. "1 hour ago"), lines: count, priority: 0-7 or emerg/alert/crit/err/warning/notice/info/debug.
tail_fileTail a log file. Path must start with an allowed prefix (default: /var/log).
search_logsSearch journal logs for a pattern (grep -i). Optional unit filter. Returns last 200 matching lines.
apt_list_installedList installed apt packages. Optional filter by name substring.
apt_searchSearch available apt packages by name or description.
apt_showShow detailed information about a package (apt-cache show).
apt_installInstall one or more apt packages (runs apt-get install -y via sudo).
apt_removeRemove one or more apt packages, leaving config files (apt-get remove). Use run_command_sudo for purge.
apt_updateRun apt-get update to refresh package index (sudo).
apt_upgradeUpgrade installed packages (apt-get upgrade). Set dry_run=true to preview without applying.
list_processesList running processes (ps aux), sorted by cpu, memory, or pid. Returns top 60.
get_processGet details about a specific process by PID or name.
get_top_processesGet top N processes sorted by CPU or memory usage.
kill_processSend a signal to a process by PID. Default signal is SIGTERM (graceful). Use SIGKILL to force. Runs via sudo.
service_listList systemd services. scope: "system" (default) or "user". Optional state filter (e.g. "running", "failed").
service_statusGet systemctl status for a named service.
service_startStart a system service (sudo). System scope only.
service_stopStop a system service (sudo). System scope only.
service_restartRestart a system service (sudo). System scope only.
service_enableEnable a system service to start at boot (sudo). System scope only.
service_disableDisable a system service from starting at boot (sudo). System scope only.
run_commandExecute an arbitrary shell command and return stdout/stderr. Subject to 30s timeout and 1MB output limit. Use for operations not covered by structured tools.
run_command_sudoExecute an arbitrary shell command with sudo. Same limits as run_command. Use for privileged operations not covered by structured tools (e.g. apt purge, iptables).
get_system_infoReturns hostname, OS version, kernel, uptime, and architecture.
get_cpu_usageReturns CPU load averages, core count, and a top snapshot.
get_memory_usageReturns RAM and swap usage (free -h and /proc/meminfo).
get_disk_usageReturns disk usage per mount point (df -h) and block device layout (lsblk).
get_network_interfacesReturns all network interfaces with IPs and link status (ip addr, ip link).
zfs_list_poolsList all ZFS pools with size, allocation, fragmentation, health, and autotrim status.
zfs_pool_statusShow detailed ZFS pool status including vdev tree, scrub results, and errors. Optionally filter to a specific pool.
zfs_list_datasetsList ZFS datasets with used, available, compression, recordsize, and mount info. Optionally filter by pool.
zfs_pool_iostatShow ZFS pool I/O statistics (ops, bandwidth, latency) sampled over 3 seconds.
zfs_list_snapshotsList ZFS snapshots with size and creation time, sorted by creation date.
zfs_run_scrubStart a scrub on a ZFS pool to verify data integrity (sudo).
zfs_stop_scrubStop an in-progress scrub on a ZFS pool (sudo).
zfs_get_propertyGet one or more properties from a ZFS dataset or pool. Use "all" for all properties.
zfs_set_propertySet a property on a ZFS dataset (sudo).
zfs_create_snapshotCreate a ZFS snapshot (sudo). Use format dataset@snapname.
zfs_destroy_snapshotPermanently delete a ZFS snapshot (sudo, destructive).
zfs_pool_get_propertyGet a property from a ZFS pool (e.g. autotrim, ashift, health).
zfs_pool_set_propertySet a property on a ZFS pool (sudo), e.g. autotrim=on.
Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.
When Vitest UI server is listening, arbitrary file can be read and executed
@modelcontextprotocol/sdk has cross-client data leak via shared server/transport instance reuse
Anthropic's MCP TypeScript SDK has a ReDoS vulnerability
Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default
COMMAND_TIMEOUT_MS30000 Max time (ms) for any single commandLOCAL_MODEfalse Set to true to manage the local machine directly (no SSH)LOG_PATHS/var/log Comma-separated list of allowed log file path prefixesMCP_HTTP_HOST127.0.0.1 HTTP bind address (when TRANSPORT=http)MCP_HTTP_PORT3300 HTTP port (when TRANSPORT=http)SSH_HOSTYes — Remote host IP or hostnameSSH_KEY_PATHNo ~/.ssh/id_rsa Path to private keySSH_PORTNo 22 SSH portSSH_STRICT_HOST_CHECKNo true Set to false to skip host key verificationSSH_USERYes — SSH usernameSUDO_PASSWORDOptional. Provide if the SSH user requires a password for sudo. Not needed if the user has passwordless sudo.TRANSPORTstdio Transport mode: stdio or httpAll four hints declared on every tool
47/47 tools missing one or more hints — read_file (missing: idempotentHint, openWorldHint); write_file (missing: idempotentHint, openWorldHint); list_directory (missing: idempotentHint, openWorldHint), +44 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.
For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.
Tool inputs are validated
39/47 tool handlers declare input schemas (83%)
Declare an inputSchema with zod/joi/yup on every tool definition.
Tool handlers catch errors
Only 0/47 tool handlers wrap calls in try/catch (0%)
Wrap each tool handler body in try/catch and return a structured error response.
License file
No license file
Add a LICENSE file (MIT, Apache-2.0, etc.).
Tool test coverage
Only 0/47 tools referenced in tests (0%)
Write tests that reference each tool by name so every tool has at least one test.
Shell command execution
1 child_process call — runs shell commands
Prefer library functions over shell-outs. If you must shell out, ensure all inputs are properly escaped.
Production dependencies are patched
0 critical, 3 high severity in production deps — @modelcontextprotocol/sdk@1.12.1 (high), @modelcontextprotocol/sdk@1.12.1 (high)
Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.
Dev dependencies
1 critical/high in dev-only deps (does not ship to users)
Upgrade dev dependencies when convenient.
Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.
[](https://m8ven.ai/mcp/szoran53/linux-mcp-server)?variant=verified from the URL.Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.
https://m8ven.ai/api/mcp/tool-check