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
访问服务器

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.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选