execute_ps
Execute PowerShell commands directly on Windows systems. Use the tool to run scripts, manage modules, and retrieve system information efficiently via the PowerShell MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | PowerShell command to execute |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"description": "PowerShell command to execute",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}