convert-ifc-to-frag
Convert IFC files to .frag format using a file-system server for streamlined processing and querying of BIM data in the Fragment MCP Server.
Instructions
Convert an IFC file to a .frag file. Needs file-system server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPath | Yes | Full path of the IFC file to convert | |
outputPath | Yes | Full path where the output .frags file will be saved |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inputPath": {
"description": "Full path of the IFC file to convert",
"type": "string"
},
"outputPath": {
"description": "Full path where the output .frags file will be saved",
"type": "string"
}
},
"required": [
"inputPath",
"outputPath"
],
"type": "object"
}