Revitmcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Revitmcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Natural language control of Autodesk Revit through an AI-powered MCP (Model Context Protocol) server. Create walls, rooms, floor plans, dimensions, and more using conversational commands.
Revit 2024/2025/2026
|
C# Add-in (RevitMCP_core) <-- Revit API bridge on port 48884
|
Python MCP Server (FastAPI) <-- AI orchestrator on port 8001
|
AI Provider (Hugging Face / Claude / Gemini / LM Studio)
↑
Auto-fallback chain:
1. Hugging Face Inference API (primary)
2. LM Studio (local fallback)
3. Claude/Gemini (cloud fallback)RevitMCP_core is a Revit add-in that exposes the Revit API over HTTP. The Python server receives natural language queries, detects intent via templates and workflow chains, builds execution plans, and sends commands to Revit through the add-in.
The new Adaptive Orchestrator supports multiple LLM providers with automatic fallback:
RevitMCP_core is a Revit add-in that exposes the Revit API over HTTP. The Python server receives natural language queries, detects intent via templates and workflow chains, builds execution plans, and sends commands to Revit through the add-in.
Run PowerShell as Administrator:
powershell -ExecutionPolicy Bypass -File scripts\install.ps1Flags:
-SkipEnhancer — Skip AI rendering setup (core + brain only)-CPUOnly — No GPU acceleration-AMD — Use DirectML instead of CUDA dotnet build RevitMCP_core\RevitMCP_core.csproj -c Release%APPDATA%\Autodesk\Revit\Addins\2026\RevitMCP.addin: <?xml version="1.0" encoding="utf-8"?>
<RevitAddIns>
<AddIn Type="Application">
<Name>RevitMCP</Name>
<Assembly>C:\RevitMCP\RevitMCP_core.dll</Assembly>
<FullClassName>RevitMCP_core.App</FullClassName>
<ClientId>a1b2c3d4-e5f6-7890-abcd-ef1234567890</ClientId>
<VendorId>RevitMCP</VendorId>
</AddIn>
</RevitAddIns> cd server
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt%APPDATA%\RevitMCP\llm_config.json:Option A: Hugging Face (Recommended - fast, reliable, cost-effective)
{
"llm_provider": "huggingface",
"huggingface": {
"api_key_env": "HF_TOKEN",
"model": "Qwen/Qwen2.5-72B-Instruct",
"provider": "nebius"
}
}Set the environment variable: set HF_TOKEN=hf_your_token Get your token at huggingface.co/settings/tokens
Option B: Claude
{
"llm_provider": "claude",
"claude": { "api_key_env": "ANTHROPIC_API_KEY" }
}Set the environment variable: set ANTHROPIC_API_KEY=sk-ant-...
Option C: LM Studio (Local)
{
"llm_provider": "lmstudio"
}Start LM Studio with a model loaded on port 1234.
cd server
python server.pyOnce running, send natural language commands through the chat UI in Revit:
| Command | What it does |
|---|---|
build a 40x30 house | Creates a building shell with exterior walls |
3 bed 2 bath 35x25 | Generates a full room layout with partitions |
add foundation | Creates foundation walls and footings below grade |
dimension everything | Adds professional 3-tier architectural dimensions |
design a house | Starts an interactive QBD (Question-Based Design) session |
See REFERENCE.md for the full list of 280+ tools and templates.
All configuration is via environment variables (with sensible defaults):
| Variable | Default | Description |
|---|---|---|
REVITMCP_REVIT_PORT | 48884 | Port for the Revit C# add-in HTTP server |
REVITMCP_SERVER_PORT | 8001 | Port for the Python FastAPI server |
REVITMCP_LM_STUDIO_PORT | 1234 | Port for LM Studio (if using local models) |
REVITMCP_ENHANCER_PORT | 5000 | Port for the AI rendering server |
REVITMCP_HOST | localhost | Host for all services |
REVITMCP_AUTH_TOKEN | (empty) | Shared secret for server authentication (recommended) |
REVITMCP_CORS_ORIGINS | (empty) | Additional CORS origins (comma-separated) |
HF_TOKEN | — | Hugging Face API token (recommended) |
ANTHROPIC_API_KEY | — | Claude API key |
GOOGLE_API_KEY | — | Google Gemini API key |
RevitMCP/
RevitMCP_core/ C# Revit add-in
App.cs Plugin entry point
McpServer.cs HTTP listener (port 48884)
RequestHandler.cs Route dispatcher (150+ routes)
UI/ Settings window (XAML)
server/ Python MCP server
server.py FastAPI entry point (port 8001)
config.py Centralized configuration
client_orchestrator.py Intent detection and plan execution
adaptive_orchestrator.py Multi-provider orchestrator (HF/LM/Cloud)
hf_orchestrator.py Hugging Face Inference integration
templates.py Pre-built workflow templates
workflow_chains.py Multi-phase compound workflows
qbd_session.py Question-Based Design sessions
tools/ 280+ Revit API tool implementations
geometry_tools.py Walls, floors, roofs
annotation_tools.py Dimensions, grids, sheets
auto_dimensions.py Professional dimensioning
physics_tools.py Structural/thermal analysis
family_editor_tools.py Parametric family creation
...
examples/ Usage examples
hf_example.py Hugging Face integration demo
tests/ Integration test suite
scripts/ Installation scripts
install.ps1 Automated installer
uninstall.ps1 Clean uninstaller
docs/ DocumentationGET http://localhost:8001/healthReturns server status and Revit connectivity.
See TROUBLESHOOTING.md for common issues.
Quick checks:
python server.py)http://localhost:8001/health?%APPDATA%\RevitMCP\llm_config.jsonProprietary. All rights reserved.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.