* docs: note macro repo move * chore: bump workbench to 0.6.2 * docs: update README.md * docs: improve release notes
14 lines
441 B
Python
14 lines
441 B
Python
"""FreeCAD Robust 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.6.2" # Updated by release workflow
|
|
__all__ = ["FreecadMCPPlugin", "__version__"]
|