load-frag
Load a .frag file into the Fragment MCP Server to process and query Building Information Modeling (BIM) data by category. Requires the file path of the fragment file.
Instructions
Load a .frag file. Needs file-system server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Full path of the file to load with fragments |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Full path of the file to load with fragments",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}