RevitMCP

RevitMCP

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

Category
Visit Server

README

RevitMCP

RevitMCP is a pyRevit extension plus a Python server that lets AI clients work against a live Revit session.

It supports two ways to use it:

  • Web UI at http://127.0.0.1:8000
  • Local MCP over stdio for clients such as Claude Desktop, Claude Code, and Codex

Repository layout note: this repository root is the pyRevit extension root. If you install from source manually, the checkout directory itself should be named RevitMCP.extension.

Tools

RevitMCP exposes 44 tools:

Tool Description
get_revit_project_info Get active project metadata, document path, and Revit version details
get_active_view_info Read the current view's name, type, scale, and related metadata
get_active_view_elements Capture a bounded snapshot of elements visible in the active view
export_active_view_image Export the active Revit view to a local image artifact for model vision inspection
export_element_snapshot Export a focused snapshot from explicit IDs or the active selection by activating a target view, temporarily isolating elements, tightening a section box when exporting 3D views, exporting, and restoring the view
isolate_elements_in_view Temporarily isolate explicit elements or the active selection in a view and optionally focus the camera for inspection
clear_temporary_isolate Clear temporary hide/isolate in the active or target view
activate_view Switch the active Revit view by view ID or view name
duplicate_view Duplicate a view, optionally with detailing/as dependent, template assignment, and activation
get_active_selection Read the current Revit selection as a reusable result set
get_revit_diagnostics Return live pyRevit route, document, active view, selection, and write-context diagnostics
list_family_types List loaded family types with category, family, type, and symbol IDs
get_revit_schema_context Load canonical Revit schema context including levels, categories, families, types, and common parameters
resolve_revit_targets Resolve user terms to exact Revit category, level, family, type, and parameter names
get_revit_memory_context Load persistent local user/project notes for recurring Revit conventions and workflow hints
save_revit_memory_note Save a persistent local user/project note for future chats and tool runs
analyze_model_statistics Summarize model composition including category, family/type, view, sheet, level, and room counts
get_elements_by_category Retrieve all elements for a category and store the result for follow-on actions
select_elements_by_id Select elements by explicit IDs or a stored result handle
select_stored_elements Select a previously stored search or filter result inside Revit
list_stored_elements List stored element result sets and their counts currently available on the server
filter_elements Find elements by category, level, and parameter-based conditions
filter_stored_elements_by_parameter Refine a stored result set with batched server-side parameter filtering using one or many target values
get_element_properties Read parameter values for specific elements or an existing result handle
get_element_relationships Read host, parent, child, dependent, and adaptive point relationships for model elements
get_related_element_properties Read selected parameters from elements and their host/super-component chains
update_element_parameters Update one or many element parameters with typed value handling
override_element_graphics Apply or reset active-view graphic overrides for explicit IDs or stored result sets
delete_elements Delete elements with dry-run, confirmation, max-count, unpin, and batch/individual safeguards
place_view_on_sheet Create a new sheet, auto-number it, and place a matched view on it
list_views List views that can be placed on sheets, including type and placement status
analyze_view_naming_patterns Cluster view names by type and flag likely naming outliers
suggest_view_name_corrections Generate rename suggestions from a prior view naming analysis
list_schedules List Revit schedules with IDs, categories, field counts, filters, sorting, and sheet placement status
get_schedule_info Read a schedule definition including fields, hidden state, filters, sorting/grouping, and settings
list_schedule_available_fields List fields/parameters that can be added to a schedule, including stable available field indexes
get_schedule_rows Read visible schedule table rows and column metadata
compare_schedules Compare schedule rows across overall/release schedules by key fields and quantity fields
duplicate_schedule Duplicate a schedule and optionally rename it
delete_schedule Delete a schedule with dry-run and confirmation safeguards
create_schedule Create a schedule or material takeoff with fields, calculated percentage fields, filters, sorting, and settings
update_schedule Update schedule fields, calculated percentage fields, filters, sorting/grouping, settings, or name
audit_schedule_capabilities Run a rollback-only probe for schedule creation, fields, filters, sorting, settings, and row reads
plan_and_execute_workflow Execute a multi-step Revit workflow from a structured tool plan

Schedule calculated field support currently maps to the public Revit 2024 API. Percentage fields can be added and wired to schedule fields through calculated_fields / add_calculated_fields. Revit exposes ScheduleFieldType.Formula, but does not expose a public formula-string setter in this API version, so formula text is rejected with an explicit unsupported error instead of silently creating a broken field.

Requirements

  • Autodesk Revit
  • pyRevit
  • Python 3.7+ available as python if you want to run the external server directly or through a local MCP client. Python 3.13 or older is recommended because some current AI-provider dependencies warn under Python 3.14+.
  • A Revit project open while using RevitMCP

Surface Modes

RevitMCP has two server surfaces:

  • web: browser UI at http://127.0.0.1:8000
  • mcp: stdio server for local MCP clients such as Claude Desktop, Claude Code, and Codex

One server.py process runs one surface at a time.

To switch manually:

python lib\RevitMCP_ExternalServer\server.py --surface web
python lib\RevitMCP_ExternalServer\server.py --surface mcp

If you use the pyRevit launcher, it reads the preferred surface from:

%USERPROFILE%\Documents\RevitMCP\user_data\revitmcp_settings.json

{
  "preferences": {
    "server_surface": "web"
  }
}

If you want both the Web UI and an MCP client at the same time, they need to run as separate processes.

Install RevitMCP

  1. Install pyRevit: pyRevit installer
  2. Choose one of these pyRevit extension roots:
    • %APPDATA%\pyRevit\Extensions
    • %PROGRAMDATA%\pyRevit\Extensions
  3. Clone this repository directly into a folder named RevitMCP.extension under that root:
git clone https://github.com/oakplank/RevitMCP.git "%APPDATA%\pyRevit\Extensions\RevitMCP.extension"
  1. If you download a ZIP instead, extract the repository contents into a folder named RevitMCP.extension under the same extension root.
  2. Reload pyRevit or restart Revit.

The folder name matters: pyRevit discovers extensions by folders that end with .extension.

Keep track of the exact RevitMCP.extension folder you install here. Local MCP clients must point to the server.py file inside this same folder. Do not point your client at the pyRevit install folder unless that is actually where this extension is installed.

Enable Revit Routes

  1. Open Revit.
  2. Go to pyRevit -> Settings.
  3. Enable the Routes server.
  4. Restart Revit.
  5. Allow firewall access if Windows asks.

The default Revit Routes port is usually 48884.

Quick Start: Web UI

  1. Open a Revit project.
  2. In Revit, click RevitMCP -> Server -> Launch RevitMCP.
  3. Open http://127.0.0.1:8000.
  4. Add any required model or API settings in the web UI.
  5. Try: Get Revit project info

Share the Web UI on Your LAN

By default, the Web UI listens on 127.0.0.1. That only works on the same computer, so a coworker on another machine cannot connect to http://127.0.0.1:8000.

To allow another computer on the same trusted network:

  1. On the Revit computer, edit:
%USERPROFILE%\Documents\RevitMCP\user_data\revitmcp_settings.json
  1. Under servers, set:
{
  "servers": {
    "external_server_host": "0.0.0.0",
    "external_server_port": 8000
  }
}

Keep the rest of the settings file intact.

  1. Restart the RevitMCP server.
  2. Find the Revit computer's LAN IP:
ipconfig

Use the IPv4 Address for the active Wi-Fi or Ethernet adapter.

  1. From the coworker's computer, open:
http://<REVIT_COMPUTER_IPV4>:8000

If the page still does not load, allow python.exe through Windows Defender Firewall on private networks, or add an inbound TCP rule for port 8000.

Do not expose this server on public networks or the open internet. The Web UI is intended for trusted local use.

Quick Start: Claude Desktop

Claude Desktop local MCP is local to one machine. Use this on the same computer that has Revit open, pyRevit installed, and the RevitMCP.extension files available. If a coworker on another computer needs access to your live Revit session, use Share the Web UI on Your LAN instead.

  1. Install Claude Desktop: https://claude.ai/download
  2. In Claude Desktop, go to Settings -> Developer -> Local MCP Servers -> Edit Config.
  3. Find the exact server.py path inside the same RevitMCP.extension folder that pyRevit loads.

If you installed under your user extension root:

$server = "$env:APPDATA\pyRevit\Extensions\RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py"
Test-Path $server
$server

If you installed under the machine-wide extension root:

$server = "$env:PROGRAMDATA\pyRevit\Extensions\RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py"
Test-Path $server
$server

Test-Path must return True. Use the printed absolute path in the Claude config. Do not paste %APPDATA% or %PROGRAMDATA% literally into JSON; use the expanded path such as C:\Users\YourName\AppData\Roaming\....

  1. Add revitmcp to your Claude config.

If your Claude config already exists, keep your current preferences and other MCP servers. Only add revitmcp under mcpServers.

If you copy the full example below, update the preferences values to match your own Claude Desktop setup.

{
  "mcpServers": {
    "revitmcp": {
      "command": "python",
      "args": [
        "C:\\Users\\YourName\\AppData\\Roaming\\pyRevit\\Extensions\\RevitMCP.extension\\lib\\RevitMCP_ExternalServer\\server.py",
        "--surface",
        "mcp"
      ]
    }
  },
  "preferences": {
    "chromeExtensionEnabled": true,
    "coworkScheduledTasksEnabled": true,
    "ccdScheduledTasksEnabled": true,
    "sidebarMode": "chat",
    "coworkWebSearchEnabled": true
  }
}
  1. Replace the example server.py path with the actual path from step 3.
  2. If python does not work, replace it with the full path to python.exe.
  3. Save the file and fully restart Claude Desktop.
  4. Re-open Settings -> Developer -> Local MCP Servers and confirm revitmcp shows running.
  5. Try: Get Revit project info

Expected Claude Desktop screen after revitmcp is configured:

Claude Desktop Local MCP settings showing Developer selected and the revitmcp server running

Quick Start: Codex

Codex local MCP is local to one machine. Use this on the same computer that has Revit open, pyRevit installed, and the RevitMCP.extension files available. Existing Codex sessions may not hot-load new MCP servers, so restart Codex after adding the server.

  1. Install or update Codex.
  2. Find the exact server.py path inside the same RevitMCP.extension folder that pyRevit loads.

If you installed under your user extension root:

$server = "$env:APPDATA\pyRevit\Extensions\RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py"
Test-Path $server
$server

If you installed under the machine-wide extension root:

$server = "$env:PROGRAMDATA\pyRevit\Extensions\RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py"
Test-Path $server
$server

Test-Path must return True.

  1. Add revitmcp to Codex:
codex mcp add revitmcp -- python $server --surface mcp

If python does not work, replace it with the full path to python.exe.

The command writes a Codex MCP entry equivalent to:

[mcp_servers.revitmcp]
command = "python"
args = ['C:\Users\YourName\AppData\Roaming\pyRevit\Extensions\RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py', "--surface", "mcp"]
  1. Restart Codex.
  2. Start a new Codex session and try: Get Revit project info

Troubleshooting

revitmcp does not show in Claude Desktop

  • Check that your Claude config is valid JSON.
  • Make sure the server.py path is absolute and exists.
  • If python is not found, use the full path to python.exe.
  • Fully quit Claude Desktop from the system tray and reopen it.
  • Check %APPDATA%\Claude\logs.

If the log says can't open file ... RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py, Claude is pointing at a path that does not exist. On the same machine as Claude Desktop, run:

Test-Path "$env:APPDATA\pyRevit\Extensions\RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py"
Test-Path "$env:PROGRAMDATA\pyRevit\Extensions\RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py"
Get-ChildItem "$env:APPDATA\pyRevit\Extensions" -Directory
Get-ChildItem "$env:PROGRAMDATA\pyRevit\Extensions" -Directory

If both Test-Path commands return False, either install/copy the extension to one of those RevitMCP.extension folders or update the Claude config to the real absolute path of server.py in the extension folder pyRevit is actually loading.

revitmcp does not show in Codex

  • Run codex mcp list and confirm revitmcp is listed.
  • Make sure the server.py path is absolute and exists.
  • If python is not found, use the full path to python.exe.
  • Restart Codex after changing MCP config.

If the server was added with the wrong path, remove and re-add it:

codex mcp remove revitmcp
codex mcp add revitmcp -- python C:\Users\YourName\AppData\Roaming\pyRevit\Extensions\RevitMCP.extension\lib\RevitMCP_ExternalServer\server.py --surface mcp

Claude Desktop or Codex can see revitmcp but tools do not work

  • Make sure Revit is open with a project loaded.
  • Make sure pyRevit Routes is enabled.
  • Restart Revit after enabling Routes.
  • Open View Logs for revitmcp in Claude Desktop, or check the Codex MCP startup output.
  • Make sure the MCP client is running on the same machine as Revit. This MCP mode connects to the local Revit Routes server.

Web UI or server startup issues

  • Check %USERPROFILE%\Documents\RevitMCP\server_logs
  • Startup log: server_startup_error.log
  • App log: server_app.log

Coworker cannot open the Web UI

  • If the server prints Running on http://127.0.0.1:8000, it is only listening locally. Follow Share the Web UI on Your LAN above.
  • The coworker should use http://<Revit computer IPv4>:8000, not http://127.0.0.1:8000.
  • If Windows prompts for firewall access when the server starts, allow private networks.
  • If the terminal only shows a Python 3.14 Pydantic warning and never prints Running on ..., install Python 3.13 or older and configure RevitMCP to use that interpreter.

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
Qdrant Server

Qdrant Server

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

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