Files
freecad-robust-mcp-fc111/addon/FreecadRobustMCP/freecad_mcp_bridge/__init__.py
T
Sean P. KaneandGitHub a775852ce9 chrore: major overhaul of docs, commands, and workflows (#23)
* ci: add status badges to README

* chore: major overhaul - docs, commands & workflows

* fix: general fixes and improvements

* chore: various updates and fixes

* chore: minor fixes
2026-01-07 09:44:45 -08:00

14 lines
434 B
Python

"""FreeCAD MCP Bridge - Bundled server module for the workbench addon.
SPDX-License-Identifier: MIT
Copyright (c) 2025 Sean P. Kane (GitHub: spkane)
This module provides the MCP bridge server that runs inside FreeCAD.
It is bundled with the workbench addon for self-contained installation.
"""
from .server import FreecadMCPPlugin
__version__ = "0.0.0" # Updated by release workflow
__all__ = ["FreecadMCPPlugin", "__version__"]