kicad-mcp/main.py
2025-03-20 02:01:30 -04:00

11 lines
317 B
Python

#!/usr/bin/env python3
"""
KiCad MCP Server - A Model Context Protocol server for KiCad on macOS.
This server allows Claude and other MCP clients to interact with KiCad projects.
"""
from kicad_mcp.server import create_server
if __name__ == "__main__":
server = create_server()
server.run(transport='stdio')