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.

D
Caution
52/100

linux-mcp-server

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

Code Verified⚡ Live Monitored: not connected

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

Is this your MCP?

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.

// key findings
🚨
Known vulnerabilities in dependencies: 1 critical, 3 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
🔐
You'll be asked for 1 credential: SUDO_PASSWORD
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes47 tools

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_file

Read the contents of a file. Subject to 1MB output limit.

write_file

Write text content to a file (creates or overwrites). Text only — binary files are not supported. Requires appropriate filesystem permissions.

list_directory

List directory contents with details (ls -la).

get_file_info

Get file metadata: permissions, owner, size, timestamps (stat).

make_directory

Create a directory (mkdir -p, creates parent dirs as needed).

delete_file

Delete a file or directory. Set recursive=true to delete non-empty directories.

get_journal_logs

Fetch 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_file

Tail a log file. Path must start with an allowed prefix (default: /var/log).

search_logs

Search journal logs for a pattern (grep -i). Optional unit filter. Returns last 200 matching lines.

apt_list_installed

List installed apt packages. Optional filter by name substring.

apt_search

Search available apt packages by name or description.

apt_show

Show detailed information about a package (apt-cache show).

apt_install

Install one or more apt packages (runs apt-get install -y via sudo).

apt_remove

Remove one or more apt packages, leaving config files (apt-get remove). Use run_command_sudo for purge.

apt_update

Run apt-get update to refresh package index (sudo).

apt_upgrade

Upgrade installed packages (apt-get upgrade). Set dry_run=true to preview without applying.

list_processes

List running processes (ps aux), sorted by cpu, memory, or pid. Returns top 60.

get_process

Get details about a specific process by PID or name.

get_top_processes

Get top N processes sorted by CPU or memory usage.

kill_process

Send a signal to a process by PID. Default signal is SIGTERM (graceful). Use SIGKILL to force. Runs via sudo.

service_list

List systemd services. scope: "system" (default) or "user". Optional state filter (e.g. "running", "failed").

service_status

Get systemctl status for a named service.

service_start

Start a system service (sudo). System scope only.

service_stop

Stop a system service (sudo). System scope only.

service_restart

Restart a system service (sudo). System scope only.

service_enable

Enable a system service to start at boot (sudo). System scope only.

service_disable

Disable a system service from starting at boot (sudo). System scope only.

run_command

Execute 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_sudo

Execute 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_info

Returns hostname, OS version, kernel, uptime, and architecture.

get_cpu_usage

Returns CPU load averages, core count, and a top snapshot.

get_memory_usage

Returns RAM and swap usage (free -h and /proc/meminfo).

get_disk_usage

Returns disk usage per mount point (df -h) and block device layout (lsblk).

get_network_interfaces

Returns all network interfaces with IPs and link status (ip addr, ip link).

zfs_list_pools

List all ZFS pools with size, allocation, fragmentation, health, and autotrim status.

zfs_pool_status

Show detailed ZFS pool status including vdev tree, scrub results, and errors. Optionally filter to a specific pool.

zfs_list_datasets

List ZFS datasets with used, available, compression, recordsize, and mount info. Optionally filter by pool.

zfs_pool_iostat

Show ZFS pool I/O statistics (ops, bandwidth, latency) sampled over 3 seconds.

zfs_list_snapshots

List ZFS snapshots with size and creation time, sorted by creation date.

zfs_run_scrub

Start a scrub on a ZFS pool to verify data integrity (sudo).

zfs_stop_scrub

Stop an in-progress scrub on a ZFS pool (sudo).

zfs_get_property

Get one or more properties from a ZFS dataset or pool. Use "all" for all properties.

zfs_set_property

Set a property on a ZFS dataset (sudo).

zfs_create_snapshot

Create a ZFS snapshot (sudo). Use format dataset@snapname.

zfs_destroy_snapshot

Permanently delete a ZFS snapshot (sudo, destructive).

zfs_pool_get_property

Get a property from a ZFS pool (e.g. autotrim, ashift, health).

zfs_pool_set_property

Set a property on a ZFS pool (sudo), e.g. autotrim=on.

// known CVEs in dependencies1 critical3 high

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

criticalvitest@3.1.1GHSA-5xrq-8626-4rwp

When Vitest UI server is listening, arbitrary file can be read and executed

high@modelcontextprotocol/sdk@1.12.1GHSA-345p-7cg4-v4c7

@modelcontextprotocol/sdk has cross-client data leak via shared server/transport instance reuse

high@modelcontextprotocol/sdk@1.12.1GHSA-8r9q-7v3j-jr4g

Anthropic's MCP TypeScript SDK has a ReDoS vulnerability

high@modelcontextprotocol/sdk@1.12.1GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configCOMMAND_TIMEOUT_MS30000 Max time (ms) for any single command
configLOCAL_MODEfalse Set to true to manage the local machine directly (no SSH)
configLOG_PATHS/var/log Comma-separated list of allowed log file path prefixes
configMCP_HTTP_HOST127.0.0.1 HTTP bind address (when TRANSPORT=http)
configMCP_HTTP_PORT3300 HTTP port (when TRANSPORT=http)
configSSH_HOSTYes — Remote host IP or hostname
configSSH_KEY_PATHNo ~/.ssh/id_rsa Path to private key
configSSH_PORTNo 22 SSH port
configSSH_STRICT_HOST_CHECKNo true Set to false to skip host key verification
configSSH_USERYes — SSH username
🔐 secretSUDO_PASSWORDOptional. Provide if the SSH user requires a password for sudo. Not needed if the user has passwordless sudo.
configTRANSPORTstdio Transport mode: stdio or http
// quality suggestions

All 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.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 8 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/szoran53/linux-mcp-server?variant=verified)](https://m8ven.ai/mcp/szoran53/linux-mcp-server)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 56dd9845345dace7f9e851eb32b05d50de056bf8
code hash: a260d8811ebe75a99d503b2c6380b5a54d332e86c01184531ceb12ab43263313
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

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
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client