27 lines
593 B
Python
27 lines
593 B
Python
"""
|
|
KiCad MCP Server - A Model Context Protocol server for KiCad.
|
|
"""
|
|
from .server import *
|
|
from .config import *
|
|
from .context import *
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "Lama Al Rajih"
|
|
__description__ = "Model Context Protocol server for KiCad on Mac, Windows, and Linux"
|
|
|
|
__all__ = [
|
|
# Package metadata
|
|
"__version__",
|
|
"__author__",
|
|
"__description__",
|
|
|
|
# Server creation / shutdown helpers
|
|
"create_server",
|
|
"add_cleanup_handler",
|
|
"run_cleanup_handlers",
|
|
"shutdown_server",
|
|
|
|
# Lifespan / context helpers
|
|
"kicad_lifespan",
|
|
"KiCadAppContext",
|
|
] |