🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

system-info-mcp-server

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

system-info-mcp-server

System Information MCP Server for Claude Desktop - Get real-time system information

1.0.1
Source
PyPI
Maintainers
1

System Info MCP Server

npm version PyPI version License: MIT

A Model Context Protocol (MCP) server that provides real-time system information. Available in both Node.js and Python with identical functionality.

🚀 Quick Start

Choose your preferred implementation:

# Test instantly
npx @system-info/mcp-server@latest --test

Option 2: Python with pipx

# Test instantly  
pipx run system-info-mcp-server --test

Both work identically! Choose based on your preference.

🔧 Claude Desktop Configuration

Node.js Implementation

{
  "mcpServers": {
    "system-info": {
      "command": "npx",
      "args": ["@system-info/mcp-server@latest"]
    }
  }
}

Python Implementation

{
  "mcpServers": {
    "system-info": {
      "command": "pipx",
      "args": ["run", "system-info-mcp-server"]
    }
  }
}

Config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

✨ Features (Both Implementations)

  • 📊 CPU Information: Usage, cores, frequency, temperature
  • 💾 Memory Status: RAM usage, swap, availability
  • 💿 Disk Usage: Storage space across all drives
  • 🔄 Process Management: Running processes with sorting
  • 🖥️ System Overview: OS details, uptime, hardware
  • 🌐 Network Information: Interfaces, connections
  • 🖥️ Monitor Detection: Connected displays with resolution, refresh rate, and DPI
  • ⚡ Quick Stats: Instant system health overview

🎯 Which Should You Choose?

Choose Node.js if:

  • ✅ You want the fastest performance
  • ✅ You prefer JavaScript/TypeScript
  • ✅ You want minimal memory usage
  • ✅ You work with npm ecosystem

Choose Python if:

  • ✅ You prefer Python
  • ✅ You work with PyPI ecosystem
  • ✅ You want to extend with Python libraries
  • ✅ You're comfortable with Python tooling

Both implementations are functionally identical and maintained in parallel.

📋 Usage Examples

Ask Claude any of these questions:

"What's my system status?"
"Show me CPU and memory usage"  
"What processes are using the most resources?"
"How much disk space is available?"
"What are my computer's specs?"
"List all network interfaces"
"What monitors are connected to my computer?"
"Show me my display setup and resolution"
"What's my monitor refresh rate?"

🖥️ Monitor Detection Features

The enhanced Python version now includes comprehensive monitor detection:

Cross-Platform Support

  • Windows: Uses WMI and PowerShell for detailed monitor information
  • macOS: Uses system_profiler for display detection with Retina support
  • Linux: Uses xrandr (X11) and sway (Wayland) for comprehensive coverage

Detection Methods

  • Primary: screeninfo library for cross-platform compatibility
  • Fallback: Platform-specific commands for additional details
  • Hybrid: Combines multiple sources for complete information

Information Provided

  • Resolution: Width and height in pixels
  • Position: X, Y coordinates for multi-monitor setups
  • Refresh Rate: Display refresh rate when available
  • DPI: Calculated dots per inch (when physical dimensions available)
  • Manufacturer: Monitor brand and model information
  • Connection Type: HDMI, DisplayPort, VGA, etc.
  • Primary Display: Identifies main monitor
  • Retina Detection: macOS Retina display identification

🔧 Requirements

Node.js Implementation

  • Node.js: 18.0.0+
  • npx: Included with npm

Python Implementation

  • Python: 3.8+
  • pipx: pip install pipx

Claude

  • Claude Desktop: 0.7.0+ (for MCP support)

🤝 Contributing

Contributions welcome for both implementations! Please:

  • Fork the repository
  • Choose your implementation (Node.js or Python)
  • Make changes in the appropriate directory
  • Ensure both implementations stay in sync
  • Add tests and update documentation
  • Submit a pull request

📄 License

MIT License - see LICENSE file.

Keywords

claude

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts