MacOS资源监控器
STDIO监控Mac系统资源使用的服务器
监控Mac系统资源使用的服务器
A Model Context Protocol (MCP) server that identifies resource-intensive processes on macOS across CPU, memory, and network usage.
MacOS Resource Monitor is a lightweight MCP server that exposes an MCP endpoint for monitoring system resources. It analyzes CPU, memory, and network usage, and identifies the most resource-intensive processes on your Mac, returning data in a structured JSON format.
Clone this repository:
git clone https://github.com/Pratyay/mac-monitor-mcp.git cd mac-monitor-mcp
Create a virtual environment (recommended):
python -m venv venv source venv/bin/activate
Install the required dependencies:
pip install mcp
Start the MCP server:
python src/monitor.py
You should see the message:
Simple MacOS Resource Monitor MCP server starting...
Monitoring CPU, Memory, and Network resource usage...
The server will start and expose the MCP endpoint, which can be accessed by an LLM or other client.
The server exposes a single tool:
get_resource_intensive_processes()
: Returns information about the most resource-intensive processesWhen called, this tool will return a JSON object containing information about the top resource consumers in each category (CPU, memory, and network).
{ "cpu_intensive_processes": [ { "pid": "1234", "cpu_percent": 45.2, "command": "firefox" }, { "pid": "5678", "cpu_percent": 32.1, "command": "Chrome" } ], "memory_intensive_processes": [ { "pid": "1234", "memory_percent": 8.5, "resident_memory_kb": 1048576, "command": "firefox" }, { "pid": "8901", "memory_percent": 6.2, "resident_memory_kb": 768432, "command": "Docker" } ], "network_intensive_processes": [ { "command": "Dropbox", "network_connections": 12 }, { "command": "Spotify", "network_connections": 8 } ] }
The MacOS Resource Monitor uses built-in macOS command-line utilities:
ps
: To identify top CPU and memory consuming processeslsof
: To monitor network connections and identify network-intensive processesData is collected when the tool is invoked, providing a real-time snapshot of system resource usage.
This MCP server is designed to work with Large Language Models (LLMs) that support the Model Context Protocol. The LLM can use the get_resource_intensive_processes
tool to access system resource information and provide intelligent analysis.
Contributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)Here are some ways you could enhance this monitor: