find_commands
Search and retrieve PowerShell commands using a specific term, enabling efficient command discovery and execution on Windows systems via the PowerShell MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search | Yes | Search term for PowerShell commands |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"search": {
"description": "Search term for PowerShell commands",
"type": "string"
}
},
"required": [
"search"
],
"type": "object"
}