mcp_call_mac_system_profiler
Retrieve detailed Mac system information by specifying a datatype. Use to analyze hardware, software, network, and device details for debugging and understanding system configurations.
Instructions
Call the system_profiler with the given datatype. Allow LLM to deepdive into the
system information.
This function is used to get the system information to help user to understand the
system and potentially debug.
Allowed datatypes:
- SPAirPortDataType - Airport/WiFi information
- SPApplicationsDataType - Application information
- SPAudioDataType - Audio device information
- SPBluetoothDataType - Bluetooth information
- SPCameraDataType - Camera information
- SPDiagnosticsDataType - Diagnostic information
- SPDisplaysDataType - Display and graphics information
- SPFirewallDataType - Firewall settings
- SPHardwareDataType - Hardware specifications
- SPLocationDataType - Location services information
- SPMemoryDataType - Memory information
- SPNetworkDataType - Network settings and interfaces
- SPNVMeDataType - NVMe storage details
- SPPCIDataType - PCI devices information
- SPPowerDataType - Battery and power information
- SPSoftwareDataType - Software and OS information
- SPStorageDataType - Storage devices and volumes
- SPThunderboltDataType - Thunderbolt ports and connections
- SPUSBDataType - USB devices and connections
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datatype | Yes |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"title": "Datatype",
"type": "string"
}
},
"required": [
"datatype"
],
"title": "mcp_call_mac_system_profilerArguments",
"type": "object"
}