kicad-mcp/mckicad/__init__.py
Ryan Malloy 687e14bd11 Rename project from kicad-mcp to mckicad
Rename source directory kicad_mcp/ → mckicad/, update all imports,
pyproject.toml metadata, documentation references, Makefile targets,
and .gitignore paths. All 195 tests pass.
2026-02-13 00:53:59 -07:00

29 lines
640 B
Python

"""
KiCad MCP Server.
A Model Context Protocol (MCP) server for KiCad electronic design automation (EDA) files.
"""
from .config import *
from .context import *
from .server 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",
]