
KiCAD-MCP-Server
β 1,400from mixelpixx
KiCAD MCP is a Model Context Protocol (MCP) implementation that enables Large Language Models (LLMs) like Claude to directly interact with KiCAD for printed circuit board design.
<a name="top"></a>
<div align="center"> <img src="../resources/images/KiCAD-MCP-Server_only_css.svg" alt="KiCAD-MCP-Server Logo" height="240" />KiCAD MCP Server
πΊπΈ English (EN) Β β’Β π©πͺ Deutsch (DE) Β β’Β π¨π³ δΈζ (ZH)
</div> <!-- prettier-ignore-start --> <div align="center">Our new forum is up: https://forum.orchis.ai β Need help? Have suggestions? Want to show off your work?
</div> <!-- prettier-ignore-end -->KiCAD MCP Server is a Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with KiCAD for PCB design automation. Built on the MCP 2025-06-18 specification, this server provides comprehensive tool schemas and real-time project state access for intelligent PCB design workflows.
Design PCBs with natural language
Describe what you want to build β and let AI handle the EDA work. Place components, create custom symbols and footprints, route connections, run checks, and export production files, all by talking to your AI assistant.
What it can do today
- Project setup, schematic editing, component placement, routing, DRC/ERC, export
- Custom symbol and footprint generation β for modules not in the standard KiCAD library
- Personal library management β create once, reuse across projects
- JLCPCB integration β parts catalog with pricing and stock data
- Freerouting integration β automatic PCB routing via Java/Docker
- Visual feedback β snapshots and session logs for traceability
- Cross-platform β Windows, Linux, macOS
Quick Start
- Install KiCAD 9.0+
- Install Node.js 18+ and Python 3.11+
- Clone and build:
git clone https://github.com/mixelpixx/KiCAD-MCP-Server.git
cd KiCAD-MCP-Server
npm install
npm run build- Configure your AI client β see Platform Guide
GitHub Copilot (VS Code)
Copy config/vscode-mcp.example.json to .vscode/mcp.json β VS Code auto-detects it. β Full setup guide
Claude Desktop
Edit your config file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS/Linux:
~/.config/claude/claude_desktop_config.json
Example configs: config/windows-config.example.json or config/macos-config.example.json
Documentation
- Full README β complete documentation
- Quick Start (Router Tools) β first steps
- Tool Inventory β all available tools
- Schematic Tools Reference
- Routing Tools Reference
- Footprint & Symbol Creator Guide
- JLCPCB Usage Guide
- Platform Guide
- Changelog
Community
- Discussions β questions, ideas, showcase
- Issues β bugs and feature requests
- Contributing
Star History
<a href="https://www.star-history.com/?repos=mixelpixx%2FKiCAD-MCP-Server&type=date&legend=top-left"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=mixelpixx/KiCAD-MCP-Server&type=date&theme=dark&legend=top-left" /> <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=mixelpixx/KiCAD-MCP-Server&type=date&legend=top-left" /> <img alt="Star History Chart" src="https://api.star-history.com/chart?repos=mixelpixx/KiCAD-MCP-Server&type=date&legend=top-left" /> </picture> </a>AI Disclosure
Developed with AI Assistance This project was developed with the support of AI-assisted coding tools (GitHub Copilot, Claude). All code has been reviewed, tested, and integrated by the maintainers. AI tools were used to accelerate development β creative decisions, architecture, and responsibility remain entirely with the authors.
Disclaimer
<div align="right"><a href="#top"><img src="https://img.shields.io/badge/%E2%96%B4_top-grey?style=flat-square" alt="back to top"></a></div>No Warranty β Use at Your Own Risk
This project is provided without any warranty, express or implied. The authors and contributors accept no liability for damages of any kind arising from the use or inability to use this software, including but not limited to:
- Errors in generated schematics, PCB layouts, or manufacturing files
- Damage to hardware, components, or devices caused by incorrect designs
- Financial losses due to manufacturing errors or incorrect orders
- Data loss or corruption of KiCAD project files
AI-generated design suggestions do not replace qualified engineering review. Safety-critical applications (medical, aerospace, automotive, etc.) require mandatory independent expert verification.
This project is licensed under the MIT License β which likewise excludes all liability.
# Install KiCAD 9.0 or higher
sudo add-apt-repository --yes ppa:kicad/kicad-9.0-releases
sudo apt-get update
sudo apt-get install -y kicad kicad-libraries
# Install Node.js
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
# Clone and build
git clone https://github.com/mixelpixx/KiCAD-MCP-Server.git
cd KiCAD-MCP-Server
npm install
pip3 install -r requirements.txt
npm run build
# Verify
python3 -c "import pcbnew; print(pcbnew.GetBuildVersion())"Before it works, you'll need: KICAD_MCP_DEV
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.