get-module
Retrieve detailed information about a specific module by providing the module ID and organization ID within the Terrakube MCP Server infrastructure.
Instructions
Retrieves detailed information about a specific module
Input Schema
Name | Required | Description | Default |
---|---|---|---|
moduleId | Yes | Module ID | |
organizationId | Yes | Organization ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"moduleId": {
"description": "Module ID",
"type": "string"
},
"organizationId": {
"description": "Organization ID",
"type": "string"
}
},
"required": [
"organizationId",
"moduleId"
],
"type": "object"
}