@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.
- package/README.md +238 -0
- package/acc-mcp-index.js +427 -0
- package/aps-viewer.html +400 -0
- package/mcp-page-index.html +294 -0
- package/navisworks-mcp-index.js +525 -0
- package/package.json +31 -0
- package/pages-site/icon-192.png +0 -0
- package/pages-site/icon-48.png +0 -0
- package/pages-site/icon-512.png +0 -0
- package/pages-site/index.html +644 -0
- package/pages-site/manifest.json +49 -0
- package/pages-site/viewer.html +4244 -0
- package/pages-site/vr-viewer.html +1637 -0
- package/revit-mcp-index.js +709 -0
- package/scanbim-app-index.html +644 -0
- package/scanbim-mcp/README.md +33 -0
- package/scanbim-mcp/package.json +16 -0
- package/scanbim-mcp/src/index.js +694 -0
- package/scanbim-mcp/wrangler.toml +11 -0
- package/schema.sql +45 -0
- package/server.json +21 -0
- package/src/index-v1.0.2.js +396 -0
- package/src/index.js +723 -0
- package/twinmotion-mcp-index.js +516 -0
- package/upload-mcp-page.ps1 +52 -0
- package/wrangler.toml +19 -0
|
@@ -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
|
+
}
|