* chore: rename workbench to FreecadRobustMCPBridge * fix: stdio cleanup and bug fix for JSON RPC * fix: update FreeCAD MCP bridge and tests * test: Fix GUI Integration tests and other issues * fix: unit tests in CI and a few other things * docs: generate GitHub pages site and link to it. * fix: General code improvements and DRY refactoring * chore: General cleanup * chore: small fixes * docs: cleanup * docs: fixes * docs: small corrections * docs: fix * test: release check * bump: workbench v0.6.0 * chore: bump macros to 0.6.0 * docs: Release improvements * refactor: improve DRYness of code
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.0" # Updated by release workflow
|
|
__all__ = ["FreecadMCPPlugin", "__version__"]
|