pyrevit-mcp
Enables AI agents to inspect and edit an open Autodesk Revit model, including querying elements, setting parameters, controlling views, highlighting graphics, and managing model health through the Revit API.
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., "@pyrevit-mcpfind all doors narrower than 1.2m and highlight them in red"
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.
pyrevit-mcp
An MCP server that exposes an open Autodesk Revit model to any MCP client, so the model can be inspected and edited in plain language instead of through the Revit UI.
Ask "find all doors narrower than 1.2m and highlight them in red" or "rename this room to ICU Recovery", and the server translates that into Revit API calls through pyRevit Routes. A small web chat UI is included for demos: split-screen with Revit, CSV import and export, undo, and screenshots of the model right in the chat.
Built for customer demos, prototyping and my own day-to-day work.
This is not an official Autodesk product and comes with no support commitment. I work at Autodesk as a Technical Specialist for Emerging Tech in Construction, and this project is not part of that role. See Disclaimer and support.
How it works
MCP client (Claude Code, Claude Desktop, ...)
│ stdio
▼
server.py (Python 3 / FastMCP) ──HTTP :48884──> pyRevit Routes (IronPython, inside Revit)
▲ │
│ shared revit_get/revit_post ▼
app.py (FastAPI :8100) ◄── web chat UI Revit API, Transactions
│
▼ Claude APITwo entry points share one bridge:
server.pyis the MCP server. Any MCP client can connect over stdio and gets 21 tools.app.pyis a FastAPI backend with a chat UI (web/index.html) driven by the Claude API. It exposes the same tools plus CSV export, and renders images, downloads, and undo in the chat.
Inside Revit, a pyRevit extension (pyrevit-mcp.extension/) registers REST routes. pyRevit
injects the active document into the handlers, which run in the Revit API context, one
transaction per write.
Related MCP server: Revit MCP Server
What it covers
21 MCP tools:
Area | Tools |
Orientation |
|
Query |
|
Write |
|
Visual |
|
Selection |
|
Views |
|
Model health |
|
Persistence |
|
Parameter access covers instance and type parameters: reads fall back to the element type automatically, and a type write reports how many instances it affects before you trust it. Values are returned as display values in project units. Doors report their room assignment (FromRoom/ToRoom).
Documentation
The full guide with a validated per-tool reference is hosted at
mk92at.github.io/pyrevit-mcp/pyrevit-mcp.html.
It supports English and German (?lang=en|de), light and dark themes, and per-tool anchors
(#find_elements). The web chat UI links into it from the tool reference sidebar.
Requirements
Autodesk Revit 2024 or newer (developed against Revit 2027) with pyRevit installed
Python 3.11 or newer and uv
For the web chat UI: an Anthropic API key
Setup
1. Install the Revit extension. Copy or clone this repository, then add
pyrevit-mcp.extension to pyRevit's extension search paths (pyRevit Settings → Custom
Extension Directories, pointing at this repository's root). Enable the Routes server in
pyRevit's settings. Restart Revit.
2. Verify the bridge. With a model open:
curl http://localhost:48884/pyrevit_mcp/status/The trailing slash is mandatory on every route.
3. Install the Python side:
uv sync4a. Register with an MCP client, e.g. Claude Code:
claude mcp add revit -s user -- uv --directory "<path-to>/pyrevit-mcp" run python server.py4b. Or run the web chat UI. Create a .env with your ANTHROPIC_API_KEY (see
.env.example), then:
uv run uvicorn app:app --port 8100Open http://localhost:8100. The sidebar has a tool reference generated from the server at
runtime, with a clickable example per tool.
After any change to the extension code, restart Revit cold. The Routes server (Beta)
crashes Revit on a pyRevit reload. scripts/restart_revit.ps1 automates the cold restart and
test_routes.py smoke-tests every route afterwards.
Layout
server.py MCP server, 21 tools, shared HTTP bridge
app.py FastAPI chat backend (CSV, undo, images, downloads)
web/index.html chat UI, single file
test_routes.py end-to-end smoke test for every route
scripts/restart_revit.ps1 automated cold restart
pyrevit-mcp.extension/
startup.py route registration
lib/pyrevit_mcp/
status.py, elements.py, parameters.py, views.py, selection.py, model.py
utils.py ElementId helpers, safe JSON encoding, parameter accessKnown limits
No geometry creation or deletion; this server reads, writes parameters, and visualises.
Type parameters are written with a warning, but there is no dry-run mode.
Rooms queries slow down on very large models.
The Routes server is a pyRevit beta feature; treat the whole bridge as a prototype.
Disclaimer and support
I work at Autodesk as a Technical Specialist for Emerging Tech in Construction. This project grew out of my own exploration of MCP and the Revit API and runs alongside that work, not as part of it. It is not an official Autodesk product or project. Nothing here is built, reviewed, endorsed or maintained by Autodesk, and nothing in this repository is a statement on behalf of Autodesk. Reaching me through my job is not a way to get help with it.
On support I want to be straight with you, because the honest answer has two halves.
I would like to offer as much help as I can, and I am genuinely interested in developing this further together with anyone who finds it useful. Issues and pull requests are welcome and I will read them. Tell me what you built with it.
What I cannot do is promise any of that. There is no guaranteed response, no timeline, no fix for your blocker, and no commitment that this keeps working against future Revit or pyRevit changes. If you are building something that has to work, fork it and own your copy.
This project stands on pyRevit by Ehsan
Iran-Nejad and the pyRevit Labs community, licensed GPL-3.0. pyRevit and its Routes
module are the bridge that makes any of this possible; this repository contains no
pyRevit code and you install pyRevit yourself. Patterns for the ElementId handling and
the route registration were adapted from
revit-mcp-server by Talal Ahmed
(Demolinator), licensed MIT. The code in this repository is my own and is licensed MIT
as well, see LICENSE.
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-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.22MIT
- AlicenseBqualityCmaintenanceMCP server for Autodesk Revit via pyRevit, providing 45 tools for building design, editing, analysis, MEP, interop, and documentation. Works with any MCP client.4523MIT
- Alicense-qualityAmaintenanceA pyRevit extension and Python server that enables AI clients to interact with a live Autodesk Revit session through tools for project info, view management, element operations, and schedule management.52MIT
- Alicense-qualityCmaintenanceMCP 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.MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/mk92at/pyrevit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server