revit integration through the Model Context Protocol
Project description
Revit MCP
Overview
Revit MCP is a Python package that provides integration with Revit through the Model Context Protocol (MCP). It allows you to send commands to Revit and receive responses, enabling automation and interaction with Revit models.
Features
- Connect to Revit addon socket server.
- Send commands to create objects in Revit.
- Handle responses and errors from Revit.
- Manage server startup and shutdown lifecycle.
Installation
To install Revit MCP, you can use pip:from revit_mcp import RevitConnection
from revit_mcp import RevitConnection
# Create a RevitConnection instance
revit_connection = RevitConnection(host="localhost", port=8080)
# Connect to the Revit addon socket server
if revit_connection.connect():
# Send a command to create an object in Revit
response = revit_connection.send_command("CreateWalls", [
{"startX": 0, "startY": 0, "endX": 12000, "endY": 0, "height": 3000, "width": 200},
{"startX": 12000, "startY": 0, "endX": 12000, "endY": 10000, "height": 3000, "width": 200},
{"startX": 12000, "startY": 10000, "endX": 0, "endY": 10000, "height": 3000, "width": 200},
{"startX": 0, "startY": 10000, "endX": 0, "endY": 0, "height": 3000, "width": 200},
])
print(f"Object created: {response.get('result')}")
# Disconnect from the Revit addon socket server
revit_connection.disconnect()
else:
print("Failed to connect to Revit")
This command will start the server using the main function defined in main.py, which in turn calls the main function from server.py.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file revit_mcp-0.0.6.tar.gz.
File metadata
- Download URL: revit_mcp-0.0.6.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
504d7cbcaddd6ff253b09e22a57cc5472bb82be017c2e8d925fde1abf5a59b37
|
|
| MD5 |
9adf36119f77c84316aec17b87ff91fa
|
|
| BLAKE2b-256 |
cd1833139a929e6f1cee6527da0b3a5742813ea77a04c0af418b77c06e899ea9
|
File details
Details for the file revit_mcp-0.0.6-py3-none-any.whl.
File metadata
- Download URL: revit_mcp-0.0.6-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8422a1a701eb97178898f67ab81519078a031367f27a7be958d288a7ee1adec8
|
|
| MD5 |
e96662868ac68386f499ae18430a0c2e
|
|
| BLAKE2b-256 |
36c80384dfcb231c3eb7b939b05f05c244d7596536ae598743f663bbe6b3133d
|