Skip to main content
Glama
eva-wanxin-git

Windows Automation MCP Server

get_disk_info

Retrieve disk information on Windows systems to monitor storage capacity, usage, and drive details for system management.

Instructions

获取磁盘信息

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function that runs a PowerShell command to retrieve disk information (drives, total/used/free GB, percent used) and parses the JSON output.
    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 }; } }
  • Tool registration in getToolDefinitions(): defines name, description, and empty input schema for get_disk_info.
    { name: 'get_disk_info', description: '获取磁盘信息', inputSchema: { type: 'object', properties: {}, }, },
  • In executeTool switch statement: dispatches 'get_disk_info' calls to the getDiskInfo() handler method.
    case 'get_disk_info': return await this.getDiskInfo();
  • In canHandle(): includes 'get_disk_info' in the list of supported tools.
    const tools = ['run_powershell', 'run_cmd', 'get_system_info', 'get_disk_info', 'get_network_info']; return tools.includes(toolName);
  • Input schema definition: object with no properties (no input parameters required).
    inputSchema: { type: 'object', properties: {}, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/eva-wanxin-git/windows-automation-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server