onetech_extract_module
Extract domain models, pages, microflows, and enumerations from Mendix modules using mx.exe. Generates comprehensive JSON documentation of complete module structure for local analysis.
Instructions
Extract domain model, pages, microflows, and enumerations from a Mendix module using mx.exe. Returns JSON files with complete module structure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| moduleName | Yes | Name of the module to extract (e.g., RequestHub) | |
| mprPath | Yes | Absolute path to the .mpr file (e.g., D:\Projects\OneTech.mpr) | |
| mxPath | No | Optional: Path to mx.exe (default: D:\Program Files\Mendix\11.3.0.80734\modeler\mx.exe) | |
| outputPath | Yes | Absolute path to output directory for JSON files |
Input Schema (JSON Schema)
{
"properties": {
"moduleName": {
"description": "Name of the module to extract (e.g., RequestHub)",
"type": "string"
},
"mprPath": {
"description": "Absolute path to the .mpr file (e.g., D:\\Projects\\OneTech.mpr)",
"type": "string"
},
"mxPath": {
"description": "Optional: Path to mx.exe (default: D:\\Program Files\\Mendix\\11.3.0.80734\\modeler\\mx.exe)",
"type": "string"
},
"outputPath": {
"description": "Absolute path to output directory for JSON files",
"type": "string"
}
},
"required": [
"mprPath",
"moduleName",
"outputPath"
],
"type": "object"
}