@ifc-lite/mcp 0.13.0 → 0.13.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/dist/prompts/templates.js +1 -1
- package/dist/tools/bcf.js +1 -1
- package/package.json +14 -14
|
@@ -46,7 +46,7 @@ export const findFireRatedDoors = {
|
|
|
46
46
|
`2. For each non-compliant door, call \`bcf_topic_create\` titled "Fire rating below ${minimum} on <DoorName>" with the GlobalId in the description.`,
|
|
47
47
|
`3. Attach a viewpoint with the door selected via \`bcf_viewpoint_create\`.`,
|
|
48
48
|
`4. Report a summary of how many doors fail and the top 5 by name.`,
|
|
49
|
-
`5. Offer to export the BCF via \`bcf_export\` to ./fire-rating-
|
|
49
|
+
`5. Offer to export the BCF via \`bcf_export\` to ./fire-rating-topics.bcfzip.`,
|
|
50
50
|
].join('\n')),
|
|
51
51
|
],
|
|
52
52
|
};
|
package/dist/tools/bcf.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* Topics live inside a per-session BCF project that's lazy-created on first
|
|
8
8
|
* write. We keep the project per ToolContext (server-wide, not per-model)
|
|
9
|
-
* so an agent can collect
|
|
9
|
+
* so an agent can collect topics across federated models, then export a
|
|
10
10
|
* single .bcfzip via `bcf_export`.
|
|
11
11
|
*/
|
|
12
12
|
import { writeFile } from 'node:fs/promises';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ifc-lite/mcp",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.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",
|
|
@@ -33,26 +33,26 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"yjs": "^13.6.32",
|
|
36
|
-
"@ifc-lite/bcf": "^3.0.
|
|
36
|
+
"@ifc-lite/bcf": "^3.0.1",
|
|
37
|
+
"@ifc-lite/clash": "^2.1.0",
|
|
37
38
|
"@ifc-lite/collab": "^0.6.1",
|
|
38
|
-
"@ifc-lite/clash": "^2.0.0",
|
|
39
|
-
"@ifc-lite/create": "^2.2.1",
|
|
40
39
|
"@ifc-lite/data": "^4.0.0",
|
|
40
|
+
"@ifc-lite/create": "^2.2.1",
|
|
41
41
|
"@ifc-lite/diff": "^0.8.0",
|
|
42
|
-
"@ifc-lite/
|
|
43
|
-
"@ifc-lite/
|
|
44
|
-
"@ifc-lite/ids": "^1.
|
|
42
|
+
"@ifc-lite/extensions": "^0.6.0",
|
|
43
|
+
"@ifc-lite/export": "^4.0.1",
|
|
44
|
+
"@ifc-lite/ids": "^1.16.0",
|
|
45
45
|
"@ifc-lite/merge": "^0.4.5",
|
|
46
|
+
"@ifc-lite/geometry": "^4.3.0",
|
|
47
|
+
"@ifc-lite/mutations": "^2.1.0",
|
|
48
|
+
"@ifc-lite/parser": "^5.2.0",
|
|
49
|
+
"@ifc-lite/sdk": "^4.0.2",
|
|
50
|
+
"@ifc-lite/query": "^2.2.0",
|
|
46
51
|
"@ifc-lite/ifcx": "^4.0.0",
|
|
47
|
-
"@ifc-lite/
|
|
48
|
-
"@ifc-lite/extensions": "^0.6.0",
|
|
49
|
-
"@ifc-lite/parser": "^5.0.0",
|
|
50
|
-
"@ifc-lite/query": "^2.1.0",
|
|
51
|
-
"@ifc-lite/viewer-core": "^0.2.15",
|
|
52
|
-
"@ifc-lite/sdk": "^4.0.0"
|
|
52
|
+
"@ifc-lite/viewer-core": "^0.2.15"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@types/node": "^26.4.
|
|
55
|
+
"@types/node": "^26.4.1",
|
|
56
56
|
"typescript": "^6.0.3",
|
|
57
57
|
"vitest": "^4.1.11"
|
|
58
58
|
},
|