@scanbim-labs/scanbim-mcp 1.0.5

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.
@@ -0,0 +1,33 @@
1
+ # ScanBIM MCP Server
2
+
3
+ The AI Hub for AEC - Cloudflare Worker powering the ScanBIM MCP protocol.
4
+
5
+ ## Tools (20+)
6
+
7
+ - **Model Management:** Upload, list, get metadata for 50+ 3D formats
8
+ - **Clash Detection:** VDC-grade clash detection with severity ratings and fix suggestions
9
+ - **ACC/Forma Integration:** Issues, RFIs, document search, project summaries
10
+ - **XR (VR/AR):** Launch VR/AR sessions on Meta Quest 2/3/3S
11
+ - **Twinmotion:** Photorealistic renders and animated walkthroughs
12
+ - **Lumion:** Architectural visualization with landscaping and effects
13
+
14
+ ## Supported Formats
15
+
16
+ - **Free:** IFC, glTF, OBJ, STL, PLY, E57, LAS, DXF
17
+ - **Pro:** FBX, DWG, STEP, SketchUp, SolidWorks, Inventor
18
+ - **Enterprise:** Revit (.rvt), Navisworks (.nwd/.nwc), ReCap (.rcp/.rcs), 500M+ point clouds
19
+
20
+ ## Deploy
21
+
22
+ ```bash
23
+ npm install
24
+ npx wrangler deploy
25
+ ```
26
+
27
+ ## MCP Endpoint
28
+
29
+ POST to `https://scanbim-mcp.<your-subdomain>.workers.dev/mcp`
30
+
31
+ ## License
32
+
33
+ MIT - ScanBIM Labs
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "scanbim-mcp",
3
+ "version": "1.0.0",
4
+ "description": "ScanBIM MCP Server - The AI Hub for AEC",
5
+ "main": "src/index.js",
6
+ "scripts": {
7
+ "dev": "wrangler dev",
8
+ "deploy": "wrangler deploy",
9
+ "tail": "wrangler tail"
10
+ },
11
+ "author": "ScanBIM Labs",
12
+ "license": "MIT",
13
+ "devDependencies": {
14
+ "wrangler": "^3.0.0"
15
+ }
16
+ }