Skip to main content
Glama
Joseadobbato13

Automatización MCP — Navisworks Manage 2025

Navisworks MCP Python .NET

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 2025

Diferencia 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 bundle

Instalación

Servidor MCP

pip install -r requirements.txt
python server.py

Plugin C# (necesario)

cd plugin
dotnet build -c Release

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

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

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