get_command_info
Retrieve detailed information about a specific Drush command, including its usage and parameters, by specifying the command name and optional version for accurate results.
Instructions
Get detailed information about a specific Drush command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command_name | Yes | Name of the Drush command | |
version | No | Drush version (e.g. '13.x'). Defaults to '13.x' |
Input Schema (JSON Schema)
{
"properties": {
"command_name": {
"description": "Name of the Drush command",
"type": "string"
},
"version": {
"description": "Drush version (e.g. '13.x'). Defaults to '13.x'",
"type": "string"
}
},
"required": [
"command_name"
],
"type": "object"
}