mcp-system
Allows checking the status of the NGINX service on macOS/Linux systems.
Allows checking the status of the PostgreSQL service on macOS/Linux systems.
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-systemcheck disk usage"
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 System Server
A Model Context Protocol (MCP) server that provides system automation and control capabilities for Claude.
Features
🖥️ Command Execution: Run system commands safely
📊 System Information: Get CPU, memory, disk, and OS details
🔄 Process Management: List and kill processes
🌐 Network Tools: Check ports and network interfaces
🔧 Environment Variables: Get and set environment variables
💾 Disk Usage: Monitor disk space
🚀 Service Status: Check system service status (macOS/Linux)
Related MCP server: Linux MCP Server
Installation
Prerequisites:
Node.js 18+ installed
Install the MCP server:
cd /Users/bard/Code/mcp-system npm installAdd to Claude Desktop config: Edit
~/Library/Application Support/Claude/claude_desktop_config.json:{ "mcpServers": { "system": { "command": "node", "args": ["/Users/bard/Code/mcp-system/src/index.js"] } } }Restart Claude Desktop
Usage
Execute Commands
// Run a simple command
system_exec({ command: "ls -la" })
// Run with specific working directory
system_exec({
command: "npm install",
cwd: "/path/to/project"
})
// Run with environment variables
system_exec({
command: "echo $MY_VAR",
env: { MY_VAR: "Hello World" }
})System Information
// Get all system info
system_info({ type: "all" })
// Get specific info
system_info({ type: "cpu" }) // CPU details
system_info({ type: "memory" }) // Memory usage
system_info({ type: "os" }) // OS information
system_info({ type: "network" }) // Network interfacesProcess Management
// List all processes
process_list()
// Filter processes
process_list({ filter: "node" })
// Limit results
process_list({ limit: 10 })
// Kill a process
process_kill({ pid: 12345 })
process_kill({ pid: 12345, signal: "SIGKILL" })Network Tools
// Check if a port is in use
port_check({ port: 3000 })
port_check({ port: 8080, host: "0.0.0.0" })
// Get network interface info
network_info()Environment Variables
// Get all environment variables
env_get()
// Get specific variable
env_get({ variable: "PATH" })
// Set environment variable (for current process)
env_set({ variable: "MY_VAR", value: "my_value" })Disk Usage
// Check disk usage
disk_usage() // Default: root directory
disk_usage({ path: "/Users" })Service Status (macOS/Linux)
// Check service status
service_status({ service: "nginx" })
service_status({ service: "postgresql" })Tool Reference
Tool | Description | Required Args |
| Execute system command |
|
| Get system information | None |
| List running processes | None |
| Kill a process |
|
| Get environment variables | None |
| Set environment variable |
|
| Check service status |
|
| Check if port is in use |
|
| Get disk usage info | None |
| Get network interfaces | None |
Security Considerations
This tool executes system commands with the same privileges as the Node.js process. Be careful when:
Running commands that modify system files
Killing processes
Setting environment variables
Executing untrusted commands
Platform Support
✅ macOS: Full support
✅ Linux: Full support
⚠️ Windows: Limited support (some features may not work)
Development
Testing the server:
# Run directly
node src/index.js
# Test with sample commands
echo '{"jsonrpc": "2.0", "method": "tools/list", "id": 1}' | node src/index.jsCommon Issues
Permission denied: Some commands require elevated privileges
Command not found: Ensure the command is in PATH
Platform differences: Commands may vary between OS
License
MIT
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/MikeyBeez/mcp-system'
If you have feedback or need assistance with the MCP directory API, please join our Discord server