Automatización MCP — Navisworks Manage 2025
Allows control of Autodesk Navisworks Manage 2025 for model inspection, model tree navigation, property search, selection sets, and clash detection.
Automatización MCP — Navisworks Manage 2025
Servidor Model Context Protocol que permite controlar Autodesk Navisworks Manage 2025 desde Claude en lenguaje natural: inspección de modelos federados, árbol del modelo, búsqueda por propiedades, selection sets y detección de conflictos (clash).
Arquitectura
Claude
↕ stdio (MCP)
server.py ← FastMCP, define los @mcp.tool()
└─ tools/plugin_bridge.py ← cliente TCP → localhost:65433
↓
plugin/Navisworks_MCP_Plugin.dll ← plugin C# DENTRO de Navisworks
↓ API .NET de Navisworks
Navisworks Manage 2025Diferencia clave con Civil 3D: Navisworks no expone COM accesible desde Python. El plugin C# es el único camino — si no está cargado, las herramientas devuelven error. Verifica siempre con
navis_ping()antes de ejecutar comandos.
Related MCP server: mcp-server-for-revit
Estructura
server.py ← servidor MCP (punto de entrada)
app.py ← aplicación auxiliar
requirements.txt ← dependencias Python
tools/ ← model_info, model_tree, property_search, selection_sets, clash, federated_inspector
bim_tools/ ← utilidades BIM (property_search)
plugin/ ← plugin C# (Navisworks_MCP_Plugin.cs) + botones + bundle
instalar_plugin.bat ← instalación del bundleInstalación
Servidor MCP
pip install -r requirements.txt
python server.pyPlugin C# (necesario)
cd plugin
dotnet build -c ReleaseInstala el bundle (auto-carga al abrir Navisworks) copiando plugin/bundle/ a
%AppData%\Autodesk\ApplicationPlugins\Navisworks_MCP_Plugin.bundle\
(o usa instalar_plugin.bat). También se puede cargar manualmente en
Add-Ins → External → "MCP Server".
Probar la conexión
import socket, json
s = socket.socket(); s.connect(('127.0.0.1', 65433))
s.sendall(json.dumps({'command':'PING','params':{}}).encode())
print(s.recv(4096).decode()); s.close()Licencia
Ver LICENSE. Autodesk y Navisworks son marcas de Autodesk, Inc. Proyecto no afiliado a Autodesk.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/Joseadobbato13/automatizacion-mcp-navisworks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server