get_module_info
Retrieve detailed Drupal module information from drupal.org by inputting the module's machine name, enabling quick access to essential data for development and configuration.
Instructions
Get information about a Drupal module from drupal.org
Input Schema
Name | Required | Description | Default |
---|---|---|---|
module_name | Yes | Machine name of the Drupal module |
Input Schema (JSON Schema)
{
"properties": {
"module_name": {
"description": "Machine name of the Drupal module",
"type": "string"
}
},
"required": [
"module_name"
],
"type": "object"
}