@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,294 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head><meta charset="utf-8">
|
|
4
|
+
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>ScanBIM MCP â AI Tools for AEC | ScanBIM Labs</title>
|
|
7
|
+
<meta name="description" content="The first unified MCP platform for AEC. 46 AI tools for Revit, Navisworks, ACC/Forma, XR, Twinmotion, and Lumion. Free and open source. By ScanBIM Labs.">
|
|
8
|
+
<meta property="og:title" content="ScanBIM MCP â The AI Hub for AEC">
|
|
9
|
+
<meta property="og:description" content="Give any AI agent the power to upload, view, analyze, and share BIM models. 46 tools. 50+ formats. Zero install.">
|
|
10
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
11
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
|
|
12
|
+
<style>
|
|
13
|
+
:root {
|
|
14
|
+
--orange: #e8820c;
|
|
15
|
+
--orange-light: #f09a30;
|
|
16
|
+
--orange-dark: #c96f08;
|
|
17
|
+
--orange-glow: rgba(232,130,12,0.15);
|
|
18
|
+
--bg: #0f1117;
|
|
19
|
+
--bg-surface: #151820;
|
|
20
|
+
--bg-card: #1a1d28;
|
|
21
|
+
--border: #2a2d38;
|
|
22
|
+
--text: #e0e0e8;
|
|
23
|
+
--text-muted: #7a7d8a;
|
|
24
|
+
--text-white: #ffffff;
|
|
25
|
+
--success: #22c55e;
|
|
26
|
+
}
|
|
27
|
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
28
|
+
body { font-family: 'Inter', -apple-system, system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
|
|
29
|
+
|
|
30
|
+
/* NAV */
|
|
31
|
+
nav { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(15,17,23,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
|
|
32
|
+
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
|
|
33
|
+
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
|
|
34
|
+
/* ScanBIM Labs logo: 3 stacked cube slices */
|
|
35
|
+
.logo-slices { display: flex; flex-direction: column; gap: 2px; width: 28px; }
|
|
36
|
+
.logo-slice { height: 8px; border-radius: 2px; }
|
|
37
|
+
.logo-slice-1 { background: #ff9500; width: 20px; margin-left: 4px; }
|
|
38
|
+
.logo-slice-2 { background: #e8820c; width: 26px; margin-left: 1px; }
|
|
39
|
+
.logo-slice-3 { background: #c96f08; width: 28px; }
|
|
40
|
+
.logo-text { font-weight: 600; font-size: 1rem; color: var(--text); }
|
|
41
|
+
.logo-text strong { color: var(--orange); font-weight: 800; }
|
|
42
|
+
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
|
|
43
|
+
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
|
|
44
|
+
.nav-links a:hover { color: var(--text-white); }
|
|
45
|
+
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1.25rem; border-radius: 99px; font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer; }
|
|
46
|
+
.btn-orange { background: var(--orange); color: #fff; }
|
|
47
|
+
.btn-orange:hover { background: var(--orange-light); box-shadow: 0 4px 20px rgba(232,130,12,0.35); }
|
|
48
|
+
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
|
|
49
|
+
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
|
|
50
|
+
.btn-dark { background: #24292e; color: #fff; }
|
|
51
|
+
.btn-dark:hover { background: #333; }
|
|
52
|
+
|
|
53
|
+
/* HERO */
|
|
54
|
+
.hero { min-height: 100vh; display: flex; align-items: center; padding: 7rem 2rem 4rem; }
|
|
55
|
+
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
|
|
56
|
+
.live-badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(34,197,94,0.3); background: rgba(34,197,94,0.08); color: var(--success); padding: 0.4rem 1rem; border-radius: 99px; font-size: 0.8rem; font-weight: 600; margin-bottom: 2rem; }
|
|
57
|
+
.live-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: blink 2s infinite; }
|
|
58
|
+
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
|
|
59
|
+
h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.08; margin-bottom: 1.5rem; color: var(--text-white); }
|
|
60
|
+
h1 .orange { color: var(--orange); }
|
|
61
|
+
.hero-desc { font-size: 1.15rem; color: var(--text-muted); max-width: 620px; margin-bottom: 2.5rem; line-height: 1.7; }
|
|
62
|
+
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
|
|
63
|
+
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; padding-top: 3rem; border-top: 1px solid var(--border); }
|
|
64
|
+
.stat-val { font-size: 2.5rem; font-weight: 900; color: var(--text-white); }
|
|
65
|
+
.stat-val .o { color: var(--orange); }
|
|
66
|
+
.stat-lbl { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.2rem; }
|
|
67
|
+
|
|
68
|
+
/* SECTIONS */
|
|
69
|
+
section { padding: 5rem 2rem; }
|
|
70
|
+
.container { max-width: 1200px; margin: 0 auto; }
|
|
71
|
+
.section-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 0.75rem; }
|
|
72
|
+
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--text-white); margin-bottom: 1rem; }
|
|
73
|
+
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-bottom: 3rem; }
|
|
74
|
+
|
|
75
|
+
/* CARDS */
|
|
76
|
+
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
|
|
77
|
+
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; transition: all 0.3s; }
|
|
78
|
+
.card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
|
|
79
|
+
.card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
|
|
80
|
+
.card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
|
|
81
|
+
.card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
|
|
82
|
+
.tag { display: inline-block; margin-top: 0.75rem; padding: 0.15rem 0.6rem; background: var(--orange-glow); color: var(--orange); border-radius: 6px; font-size: 0.72rem; font-weight: 700; }
|
|
83
|
+
|
|
84
|
+
/* TOOLS */
|
|
85
|
+
.dark-section { background: var(--bg-surface); }
|
|
86
|
+
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
|
|
87
|
+
.tool-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; transition: border-color 0.2s; }
|
|
88
|
+
.tool-row:hover { border-color: var(--orange); }
|
|
89
|
+
.tool-num { min-width: 28px; height: 28px; border-radius: 6px; background: var(--orange-glow); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; }
|
|
90
|
+
.tool-name { font-family: 'SF Mono','Fira Code',monospace; font-size: 0.82rem; color: var(--orange-light); font-weight: 600; }
|
|
91
|
+
.tool-desc { font-size: 0.78rem; color: var(--text-muted); margin-left: 0.5rem; }
|
|
92
|
+
|
|
93
|
+
/* CODE */
|
|
94
|
+
.code-wrap { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; max-width: 680px; }
|
|
95
|
+
.code-bar { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 1rem; background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--border); }
|
|
96
|
+
.dots { display: flex; gap: 5px; }
|
|
97
|
+
.dot { width: 10px; height: 10px; border-radius: 50%; }
|
|
98
|
+
.dot-r { background: #ff5f57; } .dot-y { background: #ffbd2e; } .dot-g { background: #28ca42; }
|
|
99
|
+
.code-file { font-size: 0.78rem; color: var(--text-muted); }
|
|
100
|
+
.code-body { padding: 1.25rem; font-family: 'SF Mono','Fira Code',monospace; font-size: 0.82rem; line-height: 1.9; color: var(--text); }
|
|
101
|
+
.cm { color: #555; } .str { color: var(--success); } .key { color: var(--orange-light); }
|
|
102
|
+
|
|
103
|
+
/* ARCH */
|
|
104
|
+
.arch-row { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; padding: 2rem 0; }
|
|
105
|
+
.arch-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.5rem; text-align: center; min-width: 170px; }
|
|
106
|
+
.arch-box.highlight { border-color: var(--orange); box-shadow: 0 0 24px var(--orange-glow); }
|
|
107
|
+
.arch-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
|
|
108
|
+
.arch-name { font-weight: 700; color: var(--text-white); font-size: 0.95rem; margin-top: 0.15rem; }
|
|
109
|
+
.arch-arrow { color: var(--orange); font-size: 1.4rem; font-weight: 700; }
|
|
110
|
+
|
|
111
|
+
/* TIERS */
|
|
112
|
+
.tier { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; }
|
|
113
|
+
.tier.featured { border-color: var(--orange); box-shadow: 0 0 32px var(--orange-glow); }
|
|
114
|
+
.tier-name { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
|
|
115
|
+
.tier-price { font-size: 2rem; font-weight: 900; color: var(--text-white); margin: 0.25rem 0 1rem; }
|
|
116
|
+
.tier-price span { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
|
|
117
|
+
.tier ul { list-style: none; }
|
|
118
|
+
.tier li { padding: 0.25rem 0; color: var(--text-muted); font-size: 0.85rem; font-family: 'SF Mono',monospace; }
|
|
119
|
+
.tier li.hl { color: var(--orange); font-weight: 600; }
|
|
120
|
+
|
|
121
|
+
/* CTA */
|
|
122
|
+
.cta { text-align: center; padding: 6rem 2rem; }
|
|
123
|
+
.cta h2 { max-width: 700px; margin: 0 auto 1rem; }
|
|
124
|
+
.cta p { color: var(--text-muted); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2.5rem; }
|
|
125
|
+
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
|
|
126
|
+
|
|
127
|
+
/* FOOTER */
|
|
128
|
+
footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; text-align: center; color: var(--text-muted); font-size: 0.82rem; }
|
|
129
|
+
footer a { color: var(--orange); text-decoration: none; }
|
|
130
|
+
footer a:hover { text-decoration: underline; }
|
|
131
|
+
|
|
132
|
+
@media(max-width:900px) { .grid-3{grid-template-columns:repeat(2,1fr);} .grid-2{grid-template-columns:1fr;} .hero-stats{grid-template-columns:repeat(2,1fr);} }
|
|
133
|
+
@media(max-width:600px) { .grid-3{grid-template-columns:1fr;} .nav-links{display:none;} .arch-row{flex-direction:column;} .arch-arrow{transform:rotate(90deg);} }
|
|
134
|
+
</style>
|
|
135
|
+
</head>
|
|
136
|
+
<body>
|
|
137
|
+
|
|
138
|
+
<nav>
|
|
139
|
+
<div class="nav-inner">
|
|
140
|
+
<a href="https://scanbimlabs.io" class="logo">
|
|
141
|
+
<svg viewBox="0 0 40 40" width="36" height="36" style="vertical-align:middle" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="sb1" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#c96f08"/><stop offset="100%" stop-color="#b5620a"/></linearGradient><linearGradient id="sb1t" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#d87a0a"/><stop offset="100%" stop-color="#c96f08"/></linearGradient><linearGradient id="sb2" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#e8820c"/><stop offset="100%" stop-color="#d17509"/></linearGradient><linearGradient id="sb2t" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#f09a30"/><stop offset="100%" stop-color="#e8820c"/></linearGradient><linearGradient id="sb3" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#f0a030"/><stop offset="100%" stop-color="#e8920c"/></linearGradient><linearGradient id="sb3t" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#f5b040"/><stop offset="100%" stop-color="#f0a030"/></linearGradient></defs><polygon points="6,30 20,36 34,30 34,26 20,32 6,26" fill="url(#sb1)"/><polygon points="6,26 20,20 34,26 20,32" fill="url(#sb1t)"/><polygon points="6,24 20,30 34,24 34,20 20,26 6,20" fill="url(#sb2)"/><polygon points="6,20 20,14 34,20 20,26" fill="url(#sb2t)"/><polygon points="6,18 20,24 34,18 34,14 20,20 6,14" fill="url(#sb3)"/><polygon points="6,14 20,8 34,14 20,20" fill="url(#sb3t)"/></svg>
|
|
142
|
+
<span class="logo-text"><span style="color:#e8820c">Scan</span><span style="color:#e8820c;font-weight:700">BIM</span><span style="color:#fff"> Labs</span></span>
|
|
143
|
+
</a>
|
|
144
|
+
<div class="nav-links">
|
|
145
|
+
<a href="https://scanbimlabs.io">Home</a>
|
|
146
|
+
<a href="/mcp/" class="active" style="color:#e8820c">MCP</a>
|
|
147
|
+
<a href="/blog/">Blog</a>
|
|
148
|
+
<a href="https://scanbim.app">ScanBIM 3D</a>
|
|
149
|
+
<a href="https://github.com/scanbim-labs/scanbim-mcp" class="btn btn-dark"><svg width="15" height="15" viewBox="0 0 16 16" fill="currentColor"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-.95.08-1.98 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.03.16 1.78.08 1.98.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/></svg> GitHub</a>
|
|
150
|
+
<a href="https://scanbim.app" class="btn btn-primary">Launch App</a>
|
|
151
|
+
</div>
|
|
152
|
+
</div>
|
|
153
|
+
</nav>
|
|
154
|
+
|
|
155
|
+
<section class="hero">
|
|
156
|
+
<div class="hero-inner">
|
|
157
|
+
<div class="live-badge"><span class="live-dot"></span> Live — 5 MCPs Deployed (v1.0.0–v1.0.3)</div>
|
|
158
|
+
<h1>AI tools for <span class="orange">the entire AEC lifecycle.</span></h1>
|
|
159
|
+
<p class="hero-desc">ScanBIM Labs built the first unified MCP platform for AEC. 46 AI-ready tools across 5 dedicated MCPs that let Claude, ChatGPT, and any AI agent upload, view, analyze, and share BIM models across Revit, Navisworks, ACC/Forma, XR, Twinmotion, and Lumion. Free. Open source. Built by a VDC practitioner with 20+ years in the field.</p>
|
|
160
|
+
<div class="hero-buttons">
|
|
161
|
+
<a href="https://github.com/scanbim-labs/scanbim-mcp" class="btn btn-orange" style="padding:0.65rem 1.5rem;">View on GitHub</a>
|
|
162
|
+
<a href="https://scanbim-mcp.itmartin24.workers.dev/info" class="btn btn-outline">Live API</a>
|
|
163
|
+
<a href="https://scanbim.app" class="btn btn-outline">Open ScanBIM 3D</a>
|
|
164
|
+
</div>
|
|
165
|
+
<div class="hero-stats">
|
|
166
|
+
<div><div class="stat-val">46</div><div class="stat-lbl">AI Tools</div></div>
|
|
167
|
+
<div><div class="stat-val">5</div><div class="stat-lbl">AEC MCPs</div></div>
|
|
168
|
+
<div><div class="stat-val">50<span class="o">+</span></div><div class="stat-lbl">File Formats</div></div>
|
|
169
|
+
<div><div class="stat-val">$0</div><div class="stat-lbl">Open Source</div></div>
|
|
170
|
+
</div>
|
|
171
|
+
</div>
|
|
172
|
+
</section>
|
|
173
|
+
|
|
174
|
+
<section><div class="container">
|
|
175
|
+
<div class="section-tag">What is MCP</div>
|
|
176
|
+
<h2>Give AI Agents the Power to Work With BIM</h2>
|
|
177
|
+
<p class="section-sub">Model Context Protocol (MCP) is the open standard that lets AI assistants use external tools. ScanBIM MCP makes your BIM data accessible to every AI agent on the market -- no plugins, no installs, no vendor lock-in.</p>
|
|
178
|
+
<div class="arch-row">
|
|
179
|
+
<div class="arch-box"><div class="arch-label">Your AI Agent</div><div class="arch-name">Claude / ChatGPT / Cursor</div></div>
|
|
180
|
+
<div class="arch-arrow">→</div>
|
|
181
|
+
<div class="arch-box highlight"><div class="arch-label">MCP Protocol</div><div class="arch-name">ScanBIM MCP</div></div>
|
|
182
|
+
<div class="arch-arrow">→</div>
|
|
183
|
+
<div class="arch-box"><div class="arch-label">Platform</div><div class="arch-name">scanbim.app</div></div>
|
|
184
|
+
<div class="arch-arrow">→</div>
|
|
185
|
+
<div class="arch-box"><div class="arch-label">Output</div><div class="arch-name">3D Viewer / QR / VR</div></div>
|
|
186
|
+
</div>
|
|
187
|
+
</div></section>
|
|
188
|
+
|
|
189
|
+
<section class="dark-section"><div class="container">
|
|
190
|
+
<div class="section-tag">Products Covered</div>
|
|
191
|
+
<h2>One Endpoint. Six Product Categories.</h2>
|
|
192
|
+
<p class="section-sub">Your AI assistant handles Revit, Navisworks, ACC, VR, rendering, and 50+ file formats through a single connection.</p>
|
|
193
|
+
<div class="grid-3">
|
|
194
|
+
<div class="card"><div class="card-icon" style="background:var(--orange-glow);color:var(--orange);">▦</div><h3>Revit + Navisworks</h3><p>Upload .rvt and .nwd files. Browser-based 3D viewer with QR codes. AI clash detection with severity ratings and fix suggestions from 20 years of field experience.</p><span class="tag">13 tools</span></div>
|
|
195
|
+
<div class="card"><div class="card-icon" style="background:var(--orange-glow);color:var(--orange);">◆</div><h3>ACC / Forma</h3><p>Create issues, generate RFIs, search documents, and pull project summaries from Autodesk Construction Cloud. Full BIM coordination workflow in natural language.</p><span class="tag">9 tools</span></div>
|
|
196
|
+
<div class="card"><div class="card-icon" style="background:var(--orange-glow);color:var(--orange);">◓</div><h3>XR -- VR / AR</h3><p>Launch immersive VR walkthroughs on Meta Quest. Overlay BIM onto real jobsites with AR passthrough. Share sessions via QR code.</p><span class="tag">3 tools</span></div>
|
|
197
|
+
<div class="card"><div class="card-icon" style="background:var(--orange-glow);color:var(--orange);">◈</div><h3>Twinmotion</h3><p>Photorealistic renders with time-of-day, weather, and season controls. Cinematic walkthrough videos for client presentations.</p><span class="tag">5 tools</span></div>
|
|
198
|
+
<div class="card"><div class="card-icon" style="background:var(--orange-glow);color:var(--orange);">★</div><h3>Lumion</h3><p>Architectural visualization with auto-landscaping, people, vehicles, and atmospheric effects. Multiple render styles.</p><span class="tag">1 tool</span></div>
|
|
199
|
+
<div class="card"><div class="card-icon" style="background:var(--orange-glow);color:var(--orange);">⚙</div><h3>50+ File Formats</h3><p>IFC, FBX, OBJ, STL, GLTF, DWG, STEP, SolidWorks, point clouds, drone outputs. Browser-based. Zero install for viewers.</p><span class="tag">Universal</span></div>
|
|
200
|
+
</div>
|
|
201
|
+
</div></section>
|
|
202
|
+
|
|
203
|
+
<section><div class="container">
|
|
204
|
+
<div class="section-tag">Complete Tool Reference</div>
|
|
205
|
+
<h2>18 Tools. One Endpoint.</h2>
|
|
206
|
+
<p class="section-sub">Every tool is discoverable by any MCP-compatible AI client automatically.</p>
|
|
207
|
+
<div class="grid-2">
|
|
208
|
+
<div class="tool-row"><div class="tool-num">01</div><div><span class="tool-name">upload_model</span><span class="tool-desc"> -- Upload any 3D file, get viewer + QR</span></div></div>
|
|
209
|
+
<div class="tool-row"><div class="tool-num">02</div><div><span class="tool-name">detect_clashes</span><span class="tool-desc"> -- AI clash detection + fix suggestions</span></div></div>
|
|
210
|
+
<div class="tool-row"><div class="tool-num">03</div><div><span class="tool-name">get_viewer_link</span><span class="tool-desc"> -- Shareable 3D viewer + QR code</span></div></div>
|
|
211
|
+
<div class="tool-row"><div class="tool-num">04</div><div><span class="tool-name">list_models</span><span class="tool-desc"> -- List all uploaded models</span></div></div>
|
|
212
|
+
<div class="tool-row"><div class="tool-num">05</div><div><span class="tool-name">get_model_metadata</span><span class="tool-desc"> -- Format, size, element count</span></div></div>
|
|
213
|
+
<div class="tool-row"><div class="tool-num">06</div><div><span class="tool-name">get_supported_formats</span><span class="tool-desc"> -- All 50+ formats by tier</span></div></div>
|
|
214
|
+
<div class="tool-row"><div class="tool-num">07</div><div><span class="tool-name">acc_create_issue</span><span class="tool-desc"> -- Create ACC/Forma issues</span></div></div>
|
|
215
|
+
<div class="tool-row"><div class="tool-num">08</div><div><span class="tool-name">acc_create_rfi</span><span class="tool-desc"> -- Generate RFIs linked to clashes</span></div></div>
|
|
216
|
+
<div class="tool-row"><div class="tool-num">09</div><div><span class="tool-name">acc_list_issues</span><span class="tool-desc"> -- List and filter project issues</span></div></div>
|
|
217
|
+
<div class="tool-row"><div class="tool-num">10</div><div><span class="tool-name">acc_list_rfis</span><span class="tool-desc"> -- List and filter project RFIs</span></div></div>
|
|
218
|
+
<div class="tool-row"><div class="tool-num">11</div><div><span class="tool-name">acc_search_documents</span><span class="tool-desc"> -- Search drawings, specs, submittals</span></div></div>
|
|
219
|
+
<div class="tool-row"><div class="tool-num">12</div><div><span class="tool-name">acc_project_summary</span><span class="tool-desc"> -- Full project dashboard</span></div></div>
|
|
220
|
+
<div class="tool-row"><div class="tool-num">13</div><div><span class="tool-name">xr_launch_vr_session</span><span class="tool-desc"> -- VR walkthrough on Meta Quest</span></div></div>
|
|
221
|
+
<div class="tool-row"><div class="tool-num">14</div><div><span class="tool-name">xr_launch_ar_session</span><span class="tool-desc"> -- AR overlay on real jobsite</span></div></div>
|
|
222
|
+
<div class="tool-row"><div class="tool-num">15</div><div><span class="tool-name">xr_list_sessions</span><span class="tool-desc"> -- List active VR/AR sessions</span></div></div>
|
|
223
|
+
<div class="tool-row"><div class="tool-num">16</div><div><span class="tool-name">twinmotion_render</span><span class="tool-desc"> -- Photorealistic renders</span></div></div>
|
|
224
|
+
<div class="tool-row"><div class="tool-num">17</div><div><span class="tool-name">twinmotion_walkthrough</span><span class="tool-desc"> -- Animated walkthrough video</span></div></div>
|
|
225
|
+
<div class="tool-row"><div class="tool-num">18</div><div><span class="tool-name">lumion_render</span><span class="tool-desc"> -- Arch-viz with effects</span></div></div>
|
|
226
|
+
</div>
|
|
227
|
+
</div></section>
|
|
228
|
+
|
|
229
|
+
<section class="dark-section"><div class="container">
|
|
230
|
+
<div class="section-tag">Get Started</div>
|
|
231
|
+
<h2>Connect in 30 Seconds</h2>
|
|
232
|
+
<p class="section-sub">Add one line to your Claude Desktop config. All 46 tools are instantly available.</p>
|
|
233
|
+
<div class="code-wrap">
|
|
234
|
+
<div class="code-bar"><div class="dots"><div class="dot dot-r"></div><div class="dot dot-y"></div><div class="dot dot-g"></div></div><div class="code-file">claude_desktop_config.json</div></div>
|
|
235
|
+
<div class="code-body"><span class="cm">// Add this to your Claude Desktop config</span>
|
|
236
|
+
{
|
|
237
|
+
<span class="key">"mcpServers"</span>: {
|
|
238
|
+
<span class="key">"scanbim-mcp"</span>: {
|
|
239
|
+
<span class="key">"url"</span>: <span class="str">"https://scanbim-mcp.itmartin24.workers.dev/mcp"</span>
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}</div>
|
|
243
|
+
</div>
|
|
244
|
+
<div style="margin-top:2rem;">
|
|
245
|
+
<div class="code-wrap">
|
|
246
|
+
<div class="code-bar"><div class="dots"><div class="dot dot-r"></div><div class="dot dot-y"></div><div class="dot dot-g"></div></div><div class="code-file">Self-host (optional)</div></div>
|
|
247
|
+
<div class="code-body"><span class="cm">$ git clone https://github.com/scanbim-labs/scanbim-mcp.git</span>
|
|
248
|
+
<span class="cm">$ cd scanbim-mcp && npm install</span>
|
|
249
|
+
<span class="cm">$ npx wrangler deploy</span>
|
|
250
|
+
<span class="str">Done. Your own MCP endpoint is live.</span></div>
|
|
251
|
+
</div>
|
|
252
|
+
</div>
|
|
253
|
+
</div></section>
|
|
254
|
+
|
|
255
|
+
<section><div class="container">
|
|
256
|
+
<div class="section-tag">Format Tiers</div>
|
|
257
|
+
<h2>Simple, Transparent Pricing</h2>
|
|
258
|
+
<p class="section-sub">The MCP is free and open source. Format support follows the same tiers as ScanBIM 3D.</p>
|
|
259
|
+
<div class="grid-3">
|
|
260
|
+
<div class="tier"><div class="tier-name" style="color:var(--success);">Free</div><div class="tier-price">$0</div><ul><li>IFC</li><li>GLTF / GLB</li><li>OBJ / STL / PLY</li><li>DAE / 3DS / 3MF</li><li>E57 / LAS</li><li>DXF</li></ul></div>
|
|
261
|
+
<div class="tier featured"><div class="tier-name" style="color:var(--orange);">Pro</div><div class="tier-price">$49<span>/mo</span></div><ul><li>All Free formats +</li><li>FBX / DWG / SKP</li><li>STEP / IGES</li><li>SLDPRT / SLDASM</li><li>IPT / IAM</li><li>DWF / 3DM / SAT</li><li>OSGB (drone)</li></ul></div>
|
|
262
|
+
<div class="tier"><div class="tier-name" style="color:var(--orange-light);">Enterprise</div><div class="tier-price">$149<span>/mo</span></div><ul><li>All Pro formats +</li><li class="hl">RVT / RFA (Revit)</li><li class="hl">NWD / NWC (Navisworks)</li><li>RCP / RCS / PCD</li><li>LAS / LAZ / PTS</li><li>FLS / PTX / PTG / ZFS</li><li>500M+ point clouds</li><li>ACC integration</li></ul></div>
|
|
263
|
+
</div>
|
|
264
|
+
</div></section>
|
|
265
|
+
|
|
266
|
+
<section class="dark-section"><div class="container">
|
|
267
|
+
<div class="section-tag">Why ScanBIM Labs</div>
|
|
268
|
+
<h2>Built by VDC Practitioners, Not Just Developers</h2>
|
|
269
|
+
<p class="section-sub">This is not another startup guessing what construction needs. We live it every day.</p>
|
|
270
|
+
<div class="grid-3">
|
|
271
|
+
<div class="card"><h3 style="font-size:2rem;margin-bottom:0.25rem;">20+</h3><p>Years of VDC/BIM operations across every major trade and project type.</p></div>
|
|
272
|
+
<div class="card"><h3 style="font-size:1.5rem;margin-bottom:0.25rem;">Field-Tested</h3><p>Clash detection intelligence from real coordination meetings, not textbooks.</p></div>
|
|
273
|
+
<div class="card"><h3 style="font-size:1.5rem;margin-bottom:0.25rem;">Open Source</h3><p>MIT licensed core. We want the entire AEC industry to benefit from AI-native BIM.</p></div>
|
|
274
|
+
</div>
|
|
275
|
+
</div></section>
|
|
276
|
+
|
|
277
|
+
<section class="cta">
|
|
278
|
+
<h2>The AEC industry deserves <span style="color:var(--orange);">AI-native tools.</span></h2>
|
|
279
|
+
<p>We are giving them away for free. Connect your AI agent. Upload your first model. Share it with a QR code. No install. No license. Just build.</p>
|
|
280
|
+
<div class="cta-btns">
|
|
281
|
+
<a href="https://github.com/scanbim-labs/scanbim-mcp" class="btn btn-orange" style="padding:0.75rem 2rem;font-size:0.95rem;">Get Started on GitHub</a>
|
|
282
|
+
<a href="https://scanbim-mcp.itmartin24.workers.dev/info" class="btn btn-outline" style="padding:0.75rem 2rem;font-size:0.95rem;">View Live API</a>
|
|
283
|
+
<a href="https://scanbim.app" class="btn btn-outline" style="padding:0.75rem 2rem;font-size:0.95rem;">Open ScanBIM 3D</a>
|
|
284
|
+
</div>
|
|
285
|
+
</section>
|
|
286
|
+
|
|
287
|
+
<footer>
|
|
288
|
+
<p style="margin-bottom:0.4rem;"><svg viewBox="0 0 40 40" width="24" height="24" style="vertical-align:middle;margin-right:6px" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="f1" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#c96f08"/><stop offset="100%" stop-color="#b5620a"/></linearGradient><linearGradient id="f1t" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#d87a0a"/><stop offset="100%" stop-color="#c96f08"/></linearGradient><linearGradient id="f2" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#e8820c"/><stop offset="100%" stop-color="#d17509"/></linearGradient><linearGradient id="f2t" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#f09a30"/><stop offset="100%" stop-color="#e8820c"/></linearGradient><linearGradient id="f3" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#f0a030"/><stop offset="100%" stop-color="#e8920c"/></linearGradient><linearGradient id="f3t" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="#f5b040"/><stop offset="100%" stop-color="#f0a030"/></linearGradient></defs><polygon points="6,30 20,36 34,30 34,26 20,32 6,26" fill="url(#f1)"/><polygon points="6,26 20,20 34,26 20,32" fill="url(#f1t)"/><polygon points="6,24 20,30 34,24 34,20 20,26 6,20" fill="url(#f2)"/><polygon points="6,20 20,14 34,20 20,26" fill="url(#f2t)"/><polygon points="6,18 20,24 34,18 34,14 20,20 6,14" fill="url(#f3)"/><polygon points="6,14 20,8 34,14 20,20" fill="url(#f3t)"/></svg><strong style="color:#fff"><span style="color:#e8820c">Scan</span><span style="color:#e8820c;font-weight:700">BIM</span> Labs</strong> -- Spatial data tools for the entire AEC lifecycle</p>
|
|
289
|
+
<p><a href="https://scanbimlabs.io">scanbimlabs.io</a> | <a href="https://scanbim.app">scanbim.app</a> | <a href="https://github.com/scanbim-labs/scanbim-mcp">GitHub</a> | <a href="https://scanbim-mcp.itmartin24.workers.dev/health">API Status</a></p>
|
|
290
|
+
<p style="margin-top:0.75rem;">2026 ScanBIM Labs LLC. All rights reserved. MIT License (MCP core).</p>
|
|
291
|
+
</footer>
|
|
292
|
+
|
|
293
|
+
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9eb4f455dd006118',t:'MTc3NjAyNTQ2NS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
|
|
294
|
+
</html>
|