AI Skill Hub 推荐使用:独立Revit MCP 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
独立Revit MCP 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
独立Revit MCP 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/Sam-AEC/aec-model-bridge
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--revit-mcp": {
"command": "npx",
"args": ["-y", "aec-model-bridge"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 独立Revit MCP 执行以下任务... Claude: [自动调用 独立Revit MCP MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"__revit_mcp": {
"command": "npx",
"args": ["-y", "aec-model-bridge"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<img src="assets/logo.svg" alt="AEC Model Bridge" height="120">
- 100 MCP tools for model authoring, documentation, parameters, views, sheets, exports, worksharing, architecture, structure, MEP, geometry, and QA. - Native Revit add-in with no pyRevit or Dynamo dependency. - Revit 2024, 2025, 2026, and 2027 support. - Headless IFC, Speckle cloud, Rhino.Compute, and cross-platform provider architecture. - Reflection and in-process Python for advanced API workflows. - Localhost-only bridge by default. - Mock mode for development and automated testing without Revit.
| Revit version | Add-in target | Required build tools |
|---|---|---|
| 2024 | .NET Framework 4.8 | .NET 8 SDK and .NET Framework 4.8 developer pack |
| 2025 | .NET 8 for Windows | .NET 8 SDK |
| 2026 | .NET 8 for Windows | .NET 8 SDK |
| 2027 | .NET 10 for Windows | .NET 10 SDK |
You also need Windows 10 or 11, Python 3.11 or later, and a licensed Revit installation for the version you want to use.
git clone https://github.com/Sam-AEC/aec-model-bridge.git
cd aec-model-bridge
py -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -e packages/mcp-server-revit
Set the version to match your Revit installation:
$RevitVersion = Read-Host "Revit year (2024, 2025, 2026, or 2027)"
.\scripts\package.ps1 -RevitVersion $RevitVersion
.\scripts\install.ps1 -RevitVersion $RevitVersion
The installer places version-specific binaries in:
C:\ProgramData\AECModelBridge\bin\<year>
The add-in manifest is installed per user in:
%APPDATA%\Autodesk\Revit\Addins\<year>
Use -AllUsers with install.ps1 to install the manifest under C:\ProgramData\Autodesk\Revit\Addins\<year> instead.
To prepare binaries for every supported version in one pass:
.\scripts\package.ps1 -RevitVersion All
Prebuilt packages are attached to GitHub releases when available. The source installation above is the canonical path for all supported Revit versions.
$RevitVersion = Read-Host "Revit year (2024, 2025, 2026, or 2027)" .\scripts\build-addin.ps1 -RevitVersion $RevitVersion -Configuration Release
.\scripts\package.ps1 -RevitVersion All ```
CI builds the Python server and add-in targets for Revit 2024 through 2027.
Use the Python executable from the virtual environment and choose a workspace that the server may access:
{
"mcpServers": {
"aec-model-bridge": {
"command": "C:\\path\\to\\aec-model-bridge\\.venv\\Scripts\\python.exe",
"args": ["-m", "revit_mcp_server.mcp_server"],
"env": {
"MCP_REVIT_MODE": "bridge",
"MCP_REVIT_BRIDGE_URL": "http://127.0.0.1:3000",
"MCP_REVIT_WORKSPACE_DIR": "C:\\RevitProjects",
"MCP_REVIT_ALLOWED_DIRECTORIES": "C:\\RevitProjects"
}
}
}
}
VS Code users can start from .vscode/mcp.json.
Clients that support MCP Bundles can install the .mcpb file from the latest release. The Revit add-in is still required because the MCP server communicates with the running desktop application.
The typed MCP tools cover the common workflow surface and are the recommended default for agents.
For work outside the tool catalog, invoke_method, reflect_get, and reflect_set can work with public .NET API members. execute_python runs IronPython inside Revit with doc, uidoc, uiapp, and app available.
These advanced tools run with the same permissions as the Revit process. Keep the bridge on localhost and only use trusted MCP clients and prompts.
高质量的开源MCP工具,为Revit软件提供了强大的模型管理能力
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ GPL 3.0 — 强 Copyleft,衍生作品须开源,含专利保护条款,不可闭源使用。
总体来看,独立Revit MCP 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | aec-model-bridge |
| 原始描述 | 开源MCP工具:Independent Revit MCP ( Model Context Protocol integration for Revit software ).。⭐32 · C# |
| Topics | mcprevitc# |
| GitHub | https://github.com/Sam-AEC/aec-model-bridge |
| License | GPL-3.0 |
| 语言 | C# |
收录时间:2026-06-11 · 更新时间:2026-06-11 · License:GPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端