filesystem vs RevitMCPBridge2026
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | RevitMCPBridge2026 by WeberG619 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | C# |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
RevitMCPBridge2026 · Summary
RevitMCPBridge2026 provides 705+ MCP endpoints for full AI access to Autodesk Revit via named pipes, enabling direct model manipulation and autonomous goal execution.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
RevitMCPBridge2026 · Use cases
- Automated generation of construction documents including sheets, views, and annotations from Revit models
- AI-driven design validation for code compliance and clash detection across multiple disciplines
- Autonomous creation of building elements based on specifications or requirements documents
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
RevitMCPBridge2026 · Install
Installation
Prerequisites
- Autodesk Revit 2025 or 2026
- .NET Framework 4.8
- Visual Studio 2022 (for building from source)
Option 1: Installer Script
git clone https://github.com/WeberG619/RevitMCPBridge2026.git
cd RevitMCPBridge2026
.\scripts\deploy\Install-RevitMCPBridge.ps1Option 2: Manual Installation
msbuild RevitMCPBridge2026.csproj /p:Configuration=Release
copy bin\Release\RevitMCPBridge2026.dll "%APPDATA%\Autodesk\Revit\Addins\2026%"
copy RevitMCPBridge2026.addin "%APPDATA%\Autodesk\Revit\Addins\2026%"
copy appsettings.json "%APPDATA%\Autodesk\Revit\Addins\2026%"Claude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"revit-mcp": {
"command": "python",
"args": ["path/to/python-wrapper.py"],
"env": {
"REVIT_PIPE_NAME": "\\\\.\\\\pipe\\\\RevitMCPBridge2026"
}
}
}
}