RevitMCP

RevitMCP

Enables natural language control of Autodesk Revit through an AI-powered MCP server, allowing creation of walls, rooms, floor plans, and dimensions using conversational commands.

Category
Visit Server

README

RevitMCP

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.

Architecture

 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:

  • Hugging Face (primary): Fast inference, 500k+ models, native tool calling
  • LM Studio (fallback): Local models, privacy, offline capable
  • Claude/Gemini (fallback): Cloud providers, high capability

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.

Prerequisites

  • Windows 10/11
  • Autodesk Revit 2024, 2025, or 2026
  • Python 3.10 - 3.12 (PyTorch compatibility)
  • .NET SDK 8.0+ (to build the C# add-in)
  • One of: Hugging Face token (recommended), Claude API key, Google Gemini API key, or LM Studio running locally

Quick Install

Option A: Automated (Recommended)

Run PowerShell as Administrator:

powershell -ExecutionPolicy Bypass -File scripts\install.ps1

Flags:

  • -SkipEnhancer — Skip AI rendering setup (core + brain only)
  • -CPUOnly — No GPU acceleration
  • -AMD — Use DirectML instead of CUDA

Option B: Manual

  1. Build the C# add-in:

    dotnet build RevitMCP_core\RevitMCP_core.csproj -c Release
    
  2. Create the Revit manifest at %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>
    
  3. Set up Python environment:

    cd server
    python -m venv .venv
    .venv\Scripts\activate
    pip install -r requirements.txt
    
  4. Configure your AI provider — edit %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.

  5. Start the server:

    cd server
    python server.py
    
  6. Open Revit — the add-in loads automatically. Click "Start Server" in the RevitMCP settings panel.

Usage

Once 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.

Configuration

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

Project Structure

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/                   Documentation

Health Check

GET http://localhost:8001/health

Returns server status and Revit connectivity.

Troubleshooting

See TROUBLESHOOTING.md for common issues.

Quick checks:

  1. Is Revit running with the add-in loaded?
  2. Is the server running? (python server.py)
  3. Can you reach http://localhost:8001/health?
  4. Is your AI provider configured? Check %APPDATA%\RevitMCP\llm_config.json

License

Proprietary. All rights reserved.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured