MCPcopy Create free account
hub / github.com/contextform/freecad-mcp / start_debug_server

Function start_debug_server

debug/debug_socket_server.py:215–223  ·  view source on GitHub ↗

Start the debug server

()

Source from the content-addressed store, hash-verified

213debug_server = None
214
215def start_debug_server():
216 """Start the debug server"""
217 global debug_server
218 try:
219 debug_server = DebugFreeCADServer()
220 debug_server.start_server()
221 except Exception as e:
222 print(f"Failed to start debug server: {e}")
223 traceback.print_exc()
224
225def stop_debug_server():
226 """Stop the debug server"""

Callers 1

Calls 2

start_serverMethod · 0.95
DebugFreeCADServerClass · 0.85

Tested by

no test coverage detected