@ifc-lite/mcp 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -11
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -91,14 +91,14 @@ The same `npx` command works as a stdio server in any MCP-aware client.
|
|
|
91
91
|
| --- | --- |
|
|
92
92
|
| Discovery | `model_info`, `model_list`, `model_load`, `model_unload`, `schema_describe` |
|
|
93
93
|
| Query | `query_entities`, `count_entities`, `get_entity`, `get_entities_bulk`, `spatial_hierarchy`, `containment_chain`, `relationships`, `properties_unique`, `materials_list`, `classifications_list`, `georeferencing`, `units` |
|
|
94
|
-
| Geometry | `geometry_bbox`, `geometry_volume`, `geometry_area`, `clash_check`, `clash_matrix`
|
|
95
|
-
| Validation | `ids_validate`, `ids_explain`, `model_audit`, `gherkin_check`
|
|
94
|
+
| Geometry | `geometry_bbox`, `geometry_volume`, `geometry_area`, `geometry_get`, `raycast`, `clash_check`, `clash_matrix` |
|
|
95
|
+
| Validation | `ids_validate`, `ids_explain`, `model_audit`, `gherkin_check` |
|
|
96
96
|
| Mutation | `entity_set_property`, `entity_delete_property`, `entity_set_attribute`, `entity_create`, `entity_delete`, `mutation_batch`, `mutation_undo`, `mutation_diff`, `model_save` |
|
|
97
97
|
| BCF | `bcf_topic_list`, `bcf_topic_create`, `bcf_topic_update`, `bcf_topic_close`, `bcf_viewpoint_create`, `bcf_export` |
|
|
98
98
|
| bSDD | `bsdd_search`, `bsdd_class`, `bsdd_property_sets`, `bsdd_match` |
|
|
99
99
|
| Diff | `model_diff`, `quantity_diff` |
|
|
100
|
-
| Export | `export_ifc`, `export_csv`, `export_json`, `export_glb`, `export_ifcx`, `export_pdf_report`
|
|
101
|
-
| Viewer | `viewer_ask`, `viewer_open`, `viewer_close`, `viewer_status`, `viewer_colorize`, `viewer_isolate`, `viewer_hide`, `viewer_show`, `viewer_reset`, `viewer_fly_to`, `viewer_set_section`, `viewer_clear_section`, `viewer_color_by_storey`, `viewer_color_by_property`, `viewer_get_selection`, `viewer_wait_for_selection` |
|
|
100
|
+
| Export | `export_ifc`, `export_csv`, `export_json`, `export_glb`, `export_obj`, `export_ifcx`, `export_pdf_report` |
|
|
101
|
+
| Viewer | `viewer_ask`, `viewer_open`, `viewer_close`, `viewer_status`, `viewer_colorize`, `viewer_isolate`, `viewer_hide`, `viewer_show`, `viewer_reset`, `viewer_fly_to`, `viewer_set_section`, `viewer_clear_section`, `viewer_color_by_storey`, `viewer_color_by_property`, `viewer_get_selection`, `viewer_wait_for_selection`, `viewer_describe_selection` |
|
|
102
102
|
|
|
103
103
|
Resources expose live model state under the `ifc-lite://` URI scheme:
|
|
104
104
|
|
|
@@ -175,12 +175,20 @@ error.
|
|
|
175
175
|
|
|
176
176
|
## Roadmap
|
|
177
177
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
178
|
+
Shipped: stdio + Streamable HTTP transports; query, geometry (bbox, volume,
|
|
179
|
+
area), clash, IDS validation, mutation, BCF, bSDD, diff, export (IFC, CSV, JSON,
|
|
180
|
+
GLB, OBJ, IFCX), and live viewer control.
|
|
181
|
+
|
|
182
|
+
Planned: mesh geometry (`geometry_get`) and `raycast` (both need the WASM
|
|
183
|
+
geometry pipeline), Gherkin validation (`gherkin_check`), and PDF report export
|
|
184
|
+
(`export_pdf_report`) — these tools are registered but currently return
|
|
185
|
+
`UNSUPPORTED_OPERATION`. Also planned: OAuth 2.1 with PKCE and hosted
|
|
186
|
+
multi-tenant deployment, sampling for natural-language descriptions, and public
|
|
187
|
+
registry listing.
|
|
188
|
+
|
|
189
|
+
## Docs
|
|
190
|
+
|
|
191
|
+
See the [ifc-lite docs](https://ltplus-ag.github.io/ifc-lite/) for the full
|
|
192
|
+
platform documentation.
|
|
185
193
|
|
|
186
194
|
Licensed under MPL-2.0.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ifc-lite/mcp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Model Context Protocol server for ifc-lite — agent-native BIM via MCP (stdio + Streamable HTTP)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -28,21 +28,21 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@ifc-lite/bcf": "^1.
|
|
32
|
-
"@ifc-lite/clash": "^1.
|
|
33
|
-
"@ifc-lite/
|
|
34
|
-
"@ifc-lite/
|
|
35
|
-
"@ifc-lite/
|
|
36
|
-
"@ifc-lite/
|
|
37
|
-
"@ifc-lite/
|
|
31
|
+
"@ifc-lite/bcf": "^1.16.1",
|
|
32
|
+
"@ifc-lite/clash": "^1.6.1",
|
|
33
|
+
"@ifc-lite/export": "^2.5.1",
|
|
34
|
+
"@ifc-lite/create": "^1.16.3",
|
|
35
|
+
"@ifc-lite/data": "^2.5.1",
|
|
36
|
+
"@ifc-lite/ids": "^1.15.26",
|
|
37
|
+
"@ifc-lite/geometry": "^3.1.3",
|
|
38
38
|
"@ifc-lite/mutations": "^1.18.0",
|
|
39
|
-
"@ifc-lite/
|
|
40
|
-
"@ifc-lite/
|
|
41
|
-
"@ifc-lite/
|
|
42
|
-
"@ifc-lite/viewer-core": "^0.2.
|
|
39
|
+
"@ifc-lite/query": "^1.14.12",
|
|
40
|
+
"@ifc-lite/parser": "^3.8.1",
|
|
41
|
+
"@ifc-lite/sdk": "^1.21.1",
|
|
42
|
+
"@ifc-lite/viewer-core": "^0.2.8"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@types/node": "^26.0
|
|
45
|
+
"@types/node": "^26.1.0",
|
|
46
46
|
"typescript": "^6.0.3",
|
|
47
47
|
"vitest": "^4.1.9"
|
|
48
48
|
},
|