MacOS System Manager
STDIOModel Context Protocol server providing macOS system information and operations.
Model Context Protocol server providing macOS system information and operations.
A Model Context Protocol server that provides macOS-specific system information and operations.
npx @michaellatman/mcp-get@latest install @mcp-get-community/server-macos
Add this to your configuration:
{ "mcpServers": { "@mcp-get-community/server-macos": { "runtime": "node", "command": "npx", "args": [ "-y", "@mcp-get-community/server-macos" ] } } }
Retrieves system information from macOS.
Parameters:
category
(required): One of 'cpu', 'memory', 'disk', 'network', or 'all'Example:
{ "name": "systemInfo", "arguments": { "category": "cpu" } }
Sends a native macOS notification.
Parameters:
title
(required): Title of the notificationmessage
(required): Content of the notificationsound
(optional): Whether to play a sound (default: true)Example:
{ "name": "sendNotification", "arguments": { "title": "Hello", "message": "This is a test notification", "sound": true } }
npm install
npm run build
npm run dev
MIT