get_disk_info
Retrieve detailed disk information including storage capacity, usage statistics, and partition details for Windows system monitoring and management.
Instructions
获取磁盘信息
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"type": "object"
}
Implementation Reference
- src/tools/powershell.js:156-183 (handler)The handler function that runs PowerShell command to get disk information including drive, total, used, free space in GB and percent used.async getDiskInfo() { try { const command = ` Get-PSDrive -PSProvider FileSystem | Where-Object { $_.Used -ne $null } | ForEach-Object { @{ Drive = $_.Name TotalGB = [math]::Round($_.Used / 1GB + $_.Free / 1GB, 2) UsedGB = [math]::Round($_.Used / 1GB, 2) FreeGB = [math]::Round($_.Free / 1GB, 2) PercentUsed = [math]::Round(($_.Used / ($_.Used + $_.Free)) * 100, 2) } } | ConvertTo-Json `; const { stdout } = await execAsync(`powershell -Command "${command.replace(/"/g, '\\"')}"`, { shell: 'powershell.exe' }); let disks = JSON.parse(stdout); if (!Array.isArray(disks)) { disks = [disks]; } return { success: true, disks }; } catch (error) { return { success: false, error: error.message }; } }
- src/tools/powershell.js:44-51 (registration)Tool registration in getToolDefinitions(), including name, description, and empty input schema.{ name: 'get_disk_info', description: '获取磁盘信息', inputSchema: { type: 'object', properties: {}, }, },
- src/tools/powershell.js:77-78 (registration)Dispatch in executeTool switch statement that calls the getDiskInfo handler.case 'get_disk_info': return await this.getDiskInfo();
- src/tools/powershell.js:64-66 (registration)canHandle method includes 'get_disk_info' in supported tools list.const tools = ['run_powershell', 'run_cmd', 'get_system_info', 'get_disk_info', 'get_network_info']; return tools.includes(toolName);
- src/tools/powershell.js:47-50 (schema)Input schema definition: object with no required properties.inputSchema: { type: 'object', properties: {}, },