Revit MCP Server
Provides 48 tools for building design, editing, analysis, clash detection, MEP, interop, documentation, and model persistence in Autodesk Revit 2024-2027.
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., "@Revit MCP ServerCreate a new level at elevation 10 feet named 'Level 2'"
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.
Revit MCP Server
MCP server for Autodesk Revit 2024/2025/2026/2027 via pyRevit — 48 tools for building design, editing, analysis, clash detection, MEP, interop, documentation, and model persistence.
Works with any MCP client: Claude Desktop, Claude Code, Cursor, Windsurf, Copilot, or any other MCP-compatible application.
Canon Runtime
As of 2026-07-17, the canonical local MCP runtime is:
uv run main_pipe.pymain_pipe.py= stdio MCP bridge over Windows Named Pipe\\.\pipe\revit-mcpmain.py= legacy HTTP fallback bridge to pyRevit Routes on:48884
Use main.py only when pipe diagnostics or compatibility require it.
Related MCP server: Revit MCP Server
How It Works
AI Client ──stdio/SSE/HTTP──> MCP Server (Python/FastMCP) ──Named Pipe/HTTP──> pyRevit Runtime ──> Revit APIThe MCP server runs on your machine and communicates with Revit through pyRevit's Routes API. Any MCP-compatible AI client can connect to it.
Prerequisites
Requirement | Details |
Windows 10/11 | Revit is Windows-only |
Autodesk Revit | 2024, 2025, 2026, or 2027 |
pyRevit | Installed and loaded in Revit |
uv | Python package manager (install) |
A project open in Revit | Tools require an active document |
Install pyRevit (if not already installed)
pyRevit is a free add-in that lets scripts run inside Revit. This MCP server needs it to communicate with Revit.
Download the latest .exe installer (e.g.
pyRevit_CLI_x.x.x.x_admin_signed.exe)Run the installer — accept all defaults, click Next through each screen
Open (or restart) Revit — you should see a pyRevit tab in the ribbon at the top
In the pyRevit tab, click Settings (gear icon)
In the Settings window, go to the Routes section on the left
Check the box to Enable Routes Server
Click Save Settings and let pyRevit reload
To verify: open a browser and go to http://localhost:48884/ — you should see a response (not a "connection refused" error).
Quick Start
Step 1: Clone and install
git clone https://github.com/Demolinator/revit-mcp-server.git
cd revit-mcp-server
uv syncStep 2: Install the pyRevit extension
The revit_mcp/ folder and startup.py need to run inside Revit via pyRevit.
Option A — Install from pyRevit (recommended):
In Revit, go to pyRevit tab > Extensions
Find "MCP Server for Revit Python" > Install
Wait for pyRevit to reload
Option B — Manual install:
Copy the entire repo folder to
%APPDATA%\pyRevit\Extensions\Rename the folder to
mcp-server-for-revit-python.extensionIn Revit, go to pyRevit tab > Settings > Custom Extensions
Add the path to the
.extensionfolderReload pyRevit (or restart Revit)
Step 3: Activate pyRevit Routes
In Revit, go to pyRevit tab > Settings
Navigate to Routes > activate Routes Server
pyRevit will start listening on
http://localhost:48884/
Step 4: Verify connection
Open a browser and go to:
http://localhost:48884/revit_mcp/status/You should see:
{
"status": "active",
"health": "healthy",
"revit_available": true,
"document_title": "your_project_name",
"api_name": "revit_mcp"
}Step 5: Start the MCP server
uv run main_pipe.pyThat's it. Your AI client can now connect.
Legacy fallback
uv run main.pyUse only if the pipe path is unavailable and HTTP :48884 is intentionally being used as fallback.
Connecting Your AI Client
Claude Desktop / Claude Code
Add to your MCP config:
{
"mcpServers": {
"revit": {
"command": "uv",
"args": ["run", "main_pipe.py"],
"cwd": "/path/to/revit-mcp-server"
}
}
}Cursor / Windsurf / Other MCP Clients
Use HTTP transport:
uv run main_pipe.py --streamable-httpThen configure your client to connect to http://localhost:8000/mcp.
Transport Modes
Flag | Transport | Endpoints | Use Case |
(none) | stdio | stdin/stdout | Claude Desktop / Claude Code |
| SSE |
| Legacy clients |
| HTTP |
| HTTP-based clients |
| Both | All above | Maximum compatibility |
Testing with MCP Inspector
mcp dev main_pipe.pyThen open http://127.0.0.1:6274 in your browser.
Supported Tools (48)
Create (15)
Tool | Description |
| Create new levels with elevations |
| Create walls, beams, and other line-based elements |
| Create floors, roofs, and surface elements |
| Place a family instance at specified location |
| Create column grid lines |
| Create structural beams and framing |
| Create new drawing sheets |
| Create schedules with custom fields |
| Create rooms at specified levels |
| Create room separation boundary lines |
| Create ducts between two points (MEP) |
| Create pipes between two points (MEP) |
| Create mechanical or piping systems |
| Create view-specific detail lines |
| Create floor plans, sections, elevations, 3D views |
Query (12)
Tool | Description |
| Check if the API is active and responding |
| Get model information |
| Get all levels with elevations |
| Get available family types |
| Get all family categories |
| Export a view as an image |
| List all exportable views |
| Get active view details |
| Get elements in current view |
| Get currently selected elements |
| List parameters for a category |
| Get all parameters and properties of an element |
Modify (8)
Tool | Description |
| Delete elements from the model |
| Modify element parameter values |
| Color elements by parameter values |
| Reset element colors |
| Tag all walls in current view |
| Set a single parameter value on an element |
| Tag specific elements with annotation symbols |
| Move, copy, rotate, or mirror elements |
| Switch the active view in Revit |
Analyze (5)
Tool | Description |
| Filter elements by category and parameters |
| Export room areas, volumes, boundaries |
| Material takeoff data |
| Detect hard clashes (interferences) between disciplines, e.g. structure vs MEP |
| Element counts and model stats |
Document (3)
Tool | Description |
| Create dimension annotations |
| Export views to PDF or image |
Interop & Persistence (4)
Tool | Description |
| Export model to IFC format (IFC2x3/IFC4) |
| Link or import DWG, DXF, DGN, SAT, SKP, 3DM, or RVT files |
| Load a Revit family ( |
| Save / Save-As the model to disk (persistence across sessions) |
Advanced (1)
Tool | Description |
| Execute IronPython code in Revit context |
Architecture
Two runtimes communicate over HTTP:
Component | Runtime | Location | Purpose |
| Python 3.11+ (CPython) | Your machine | Canon MCP protocol bridge over Named Pipe |
| Python 3.11+ (CPython) | Your machine | Legacy HTTP fallback bridge |
| IronPython 2.7 (inside Revit) | Revit process | pyRevit route handlers, Revit API |
Multi-Version Revit Support
This server supports Revit 2024, 2025, 2026, and 2027 through centralized helper functions that handle the ElementId API differences across versions:
get_element_id_value()— Extracts integer IDs using.Value(2024+) with.IntegerValuefallbackmake_element_id()— Creates ElementIds usingSystem.Int64(2024+) withintfallback
No configuration needed — version detection is automatic via try/except at runtime.
Revit 2027 note: Revit 2027 runs on .NET 10 (vs .NET 8 in 2025/2026). This MCP server is pyRevit-based, so .NET compatibility is handled by pyRevit itself — ensure you run a pyRevit build with Revit 2027 support. None of the 48 tools use APIs removed in 2027 (AXM/FormIt import,
Mechanical.Zonemembers, legacy rebar creation, or the droppedEnergyDataSettingsproperties).
Unit Handling
All tools accept millimeters (mm). The server converts to Revit's internal feet.
From | To mm |
meters | x 1000 |
feet | x 304.8 |
inches | x 25.4 |
Creating Your Own Tools
Adding a new tool requires 2 files + 2 registration lines:
Route handler in
revit_mcp/new_module.py(IronPython 2.7)Tool definition in
tools/new_tools.py(Python 3.11+)Register routes in
startup.pyRegister tools in
tools/__init__.py
See LLM.txt for full context that helps AI assistants understand the codebase.
Development Workflow: Editing & Reloading Routes
The MCP server has two layers:
FastMCP (
tools/,main_pipe.py) — runs in your AI client process. Changes apply on next client restart.pyRevit Routes (
revit_mcp/,startup.py) — runs inside Revit via pyRevit. Changes require a sync + reload.
Typical Edit → Test Cycle
Edit code in repo (e.g.,
revit_mcp/view_management.pyortools/view_management_tools.py)Sync to pyRevit (Windows PowerShell):
D:\GitHub\revit-mcp-server\sync_to_pyrevit.ps1→ Copies
revit_mcp/andtools/to your active pyRevit extension folder.Reload pyRevit (via MCP tool
execute_revit_code):from pyrevit.loader import sessionmgr sessionmgr.reload_pyrevit()→ Takes ~90s. May return "Error: " vacío — that's normal (reloads kill active requests).
Verify your changes:
Endpoint routes (
POST /refresh_view/, etc.): test immediately post-reload viacurlorInvoke-RestMethodMCP tools (new
refresh_view(), etc.): visible in next MCP client session (stdio restarts after Revit reload)
Example: Adding refresh_view (2026-07-03)
1. Added refresh_view_handler route to revit_mcp/view_management.py
2. Added refresh_view tool to tools/view_management_tools.py
3. Ran sync_to_pyrevit.ps1 → copied both files to %APPDATA%\pyRevit\Extensions\
4. Called reload_pyrevit() via execute_revit_code
5. POST http://localhost:48884/revit_mcp/refresh_view/ → {"status":"refreshed",...}
6. Next MCP session → tool refresh_view() available in Claude/Cursor/etc.Contributing
Contributions are welcome! Feel free to submit pull requests or open issues.
Author
Talal Ahmed
License
MIT
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
- AlicenseAqualityFmaintenanceAllows AI to interact with Autodesk Revit via the MCP protocol, enabling retrieval of project data and automation of tasks like creating, modifying, and deleting elements.Last updated1364446MIT
- AlicenseBquality-maintenanceAllows AI assistants to interact with Autodesk Revit through the MCP protocol, enabling the AI to create, modify, and delete elements in Revit projects.Last updated15641
- Alicense-qualityAmaintenanceMCP server for Autodesk Revit (BIM) with 705+ API endpoints. Enables AI agents to create walls, place doors/windows, generate sheets, manage views, and produce construction documents via the Model Context Protocol. Uses named pipes for zero-crash Revit integration.Last updated22MIT
- Flicense-qualityCmaintenanceNode.js MCP server enabling AI assistants to interact with Autodesk Revit for model operations, data queries, and sketch-to-building generation via LLM.Last updated231
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for fcc-ecfs
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
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/DavidChin0/revit-mcp-stdio'
If you have feedback or need assistance with the MCP directory API, please join our Discord server