mcp-archviz
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-archvizGenerate a 3D model from the floorplan and render a perspective at 45 degrees."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-archviz
3D architecture visualization MCP server with stub provider.
Status: Phase 4 MVP — Stub provider with placeholder URLs (no real 3D rendering)
Overview
mcp-archviz provides tools for 3D visualization of workspace layouts from mcp-floorplans.
Current implementation: STUB provider
All URLs are placeholder (
stub:///) indicating no real rendering occursAPI matches future real providers (Roomify, Unreal Engine 5)
Fully testable without external 3D rendering service
Ready for Phase 5+ integration with real providers
Related MCP server: ImmoStage Virtual Staging MCP Server
Architecture
server.py
├─ MCP server with 3 tools
├─ generate_3d_model — 3D model from layout
├─ render_perspective — Perspective view from angle
└─ export_model — Export in multiple formats
test_archviz.py
└─ 15+ unit tests, all deterministicQuick Start
# Install dependencies
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Run tests
pytest test_archviz.py -v
# Start MCP server (stdio mode for Claude)
python server.pyMCP Tools
generate_3d_model
Generate 3D model from floorplan layout.
Input:
{
"layout": {
"variant_id": "balanced-001",
"zones": [...],
"metrics": {
"total_sqm": 200,
"workstations": 12,
"meeting_rooms": 1,
"collaboration_zones_pct": 25
}
},
"style": "contemporary",
"brand_colors": {
"primary": "#1a73e8",
"secondary": "#4285f4"
}
}Output: Model metadata
model_id— Unique model identifier3d_model_url— STUB URL to 3D model (GLB format)preview_image_url— STUB URL to preview imagedimensions— Calculated space dimensionszones— Zone objects with textures and materialsbrand_integration— Color accents from brand DNAinteractive_features— Planned features for real implementationformats_available— Export formats
render_perspective
Generate perspective view from specific angle.
Input:
{
"model_id": "model-abc123",
"angle_degrees": 45,
"height_m": 1.6
}Output: Rendered view metadata
render_id— Unique render identifierrendered_image_url— STUB URL to rendered imagecamera— Camera position and angleavailable_angles— Standard view angles [0, 45, 90, ...]
export_model
Export 3D model in requested format.
Input:
{
"model_id": "model-abc123",
"format": "glb"
}Supported formats:
glb— Web-ready 3D (Three.js, Babylon.js)gltf— Portable 3D formatusdz— Apple ARKit compatibleusd— Unreal Engine 5 compatiblestl— 3D printing formatobj— Blender/Maya compatible
Output: Export metadata
download_url— STUB URL to exported filefile_size_mb_estimate— Estimated file sizesupported_applications— Applications that can open formatcompression— Compression method used
Integration Pattern
Workflow: mcp-floorplans → mcp-archviz
1. Generate layout (mcp-floorplans)
└─ returns zones, metrics, stub floorplan URLs
2. Generate 3D model (mcp-archviz)
└─ receives layout
└─ returns model_id, stub 3D URLs
3. Render perspective (mcp-archviz)
└─ receives model_id, angle
└─ returns stub rendered image URL
4. Export (mcp-archviz)
└─ receives model_id, format
└─ returns stub export URLStub Provider Details
What "STUB provider" means:
All URLs returned follow the pattern stub:///path/to/resource:
stub:///models/{model_id}/model.glb
stub:///renders/{render_id}/perspective-45deg.png
stub:///exports/{export_id}/model.glbWhy stubs?
No external dependency — Don't require 3D rendering service API key
Deterministic — Same input always produces same output
Testable — Can verify logic without network calls
Honest — Clear indicator that images/models don't actually exist
Autonomous — Agent can run without user provisioning real infrastructure
When real 3D is needed:
Phase 5+ will integrate:
Roomify API (commercial 3D rendering)
Unreal Engine 5 (heavy duty rendering)
Blender API (open-source alternative)
Three.js (web-based visualization)
Phase 4 Status
✅ COMPLETED:
Stub 3D provider implementation
All 3 tools with full signatures
Metadata generation for future real implementation
15+ unit tests (all passing)
Integration tests with mcp-floorplans output
Style support (minimal, contemporary, luxury)
Brand color integration
Multi-format export support
⏸️ DEFERRED (Phase 5+):
Real 3D model generation
Real perspective rendering
Real texture/material application
Virtual walkthroughs
AR/VR export
Animation rigs
Example Response
Model generation response:
{
"status": "success",
"provider": "STUB:archviz",
"model_id": "model-abc12345",
"layout_id": "balanced-001",
"style": "contemporary",
"3d_model_url": "stub:///models/model-abc12345/model.glb",
"preview_image_url": "stub:///models/model-abc12345/preview.png",
"zones": [
{
"zone_name": "Open Space",
"zone_type": "open-space",
"3d_object_url": "stub:///zones/open-space.glb",
"texture_url": "stub:///textures/contemporary_open-space.png"
}
],
"brand_integration": {
"primary_color_accent": "#1a73e8",
"signage": "Brand logos and wayfinding (stub)"
},
"notes": "STUB provider — real 3D rendering deferred to Phase 5+. All URLs are placeholder (`stub:///`)."
}Testing
# Run all tests
pytest test_archviz.py -v
# Test categories:
# - Model generation (all styles, with/without brand colors)
# - Perspective rendering (all angles, custom heights)
# - Model export (all formats)
# - Stub markers (all URLs should contain "stub:///")
# - Integration workflow (floorplan → model → render → export)
# - Error handling (missing parameters)Architecture Decisions
Stub over mock: Placeholder URLs clearly indicate test/placeholder state
Full metadata: Each response includes real metadata (dimensions, materials, etc.)
No 3D libs: Deliberately not using Three.js, Babylon, or Blender to avoid false impression of real rendering
Type-safe: All inputs/outputs validated and documented
Async-ready: All tools are async for scaling in production
Phase 3 Integration
Works alongside:
mcp-interior — Interior redesign of existing spaces
mcp-floorplans — Space layout calculation (provides input)
WorkspaceAgent — Orchestrates all three services
References
mcp-floorplans — Floorplan generation
mcp-interior — Interior rendering
WorkspaceAgent — Orchestrator
License
Proprietary — Virtus Agents
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-quality-maintenanceEnables AI assistants to render 3D models by providing tools to execute OpenSCAD code and generate single or multi-perspective views. It returns high-quality PNG renderings directly to LLM applications for visual feedback and 3D model visualization.Last updated
- Alicense-qualityCmaintenanceAI-powered virtual staging for real estate professionals: stage empty rooms with photorealistic furniture, beautify floor plans into 3D renders, classify rooms, generate German property descriptions, and get style recommendations.Last updated3MIT
- Alicense-qualityAmaintenanceConverts spoken descriptions into standards-compliant floor plans and furnished 3D models, enabling real-time collaborative editing through a live browser editor with Claude AI.Last updated8Apache 2.0

ScanBIM MCPofficial
Alicense-qualityDmaintenanceAn AI hub for AEC that enables upload, conversion, viewing, analysis, and sharing of BIM models via 46 tools across 5 workers, integrating with Autodesk Platform Services.Last updated535MIT
Related MCP Connectors
Convert Revit files to XKT, IFC, or DWG and query BIM data via natural language.
AI virtual staging for real estate — stage rooms, beautify floor plans, classify images.
Turn a US address or parcel number into an interactive 3D flyover listing in about a minute.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Simoagadir95/mcp-archviz'
If you have feedback or need assistance with the MCP directory API, please join our Discord server