Server data from the Official MCP Registry
File-oriented MCP server for KiCad schematics, PCB placement, routing, and pours.
About
File-oriented MCP server for KiCad schematics, PCB placement, routing, and pours.
Security Report
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
4 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
How to Install
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-biosshot-kicad-copilot": {
"args": [
"-y",
"kicad-copilot-mcp"
],
"command": "npx"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
KiCad Copilot
AI-powered MCP server for KiCad. Create and modify schematics from natural language, search real components, work with hierarchical projects, generate PCB placement, route boards locally, and create simple copper pours directly through an AI agent.
KiCad Copilot is the KiCad counterpart to EasyEDA Copilot. It provides the same core circuit-generation and PCB automation capabilities—and goes further with file-oriented hierarchical projects, recoverable checkpoints, native kicad-cli integration, and fully local PCB routing.
Recommended companion: kicad-happy complements KiCad Copilot with independent design review, datasheet-backed analysis, SPICE simulation, EMC pre-compliance, BOM sourcing, and manufacturing checks. Use KiCad Copilot to build and modify the design, then use kicad-happy to analyze and review it.
What it does
KiCad Copilot gives AI agents a high-level, file-oriented interface to KiCad:
- Generate and modify schematics: add, remove, replace, and connect real components without editing every KiCad object individually.
- Rebuild schematic blocks: reorganize selected components while preserving their electrical connections.
- Search components and reusable blocks: resolve components by MPN or part UUID and insert proven functional circuits.
- Work with KiCad projects: inspect project trees and create projects, standalone schematics, hierarchical sheets, and PCB files.
- Preserve recoverable checkpoints: save, list, and restore exact versions of individual KiCad files.
- Synchronize schematic and PCB: explicitly import schematic changes into the associated board.
- Generate PCB placement: describe board constraints in a compact JavaScript DSL, review PNG/SVG previews, and apply the approved result.
- Route locally: use the bundled WASM router without sending routing work to an external service.
- Create copper pours: add simple full-board zones with optional stitching vias.
- Use native KiCad tooling: discover
kicad-clifor ERC, DRC, previews, exports, manufacturing files, and other native operations.
KiCad Copilot works directly with saved .kicad_pro, .kicad_sch, and .kicad_pcb files. It does not require KiCad IPC or a plugin installed inside KiCad.
Examples
These projects were generated and iterated through KiCad Copilot. The complete KiCad source files are available in the examples directory.
ATmega328P development board
A hierarchical ATmega328P design with the MCU core, clock, reset, decoupling, USB-UART power, Nano-compatible headers, and debug connections split across functional sheets.
Download the ATmega328P project
Geiger high-voltage supply
A larger multi-sheet design covering power input, 3.3 V regulation, the high-voltage generator, flyback stage, feedback, detector, controller, and user interface.
Download the Geiger high-voltage project
RP2350 development board
A hierarchical RP2350 design with power, clock, flash, USB/debug, GPIO headers, and an AI-generated PCB placement. The example includes the placement DSL and an editable KiCad board.
Installation
Add the MCP server to your AI agent.
Codex:
codex mcp add kicad-copilot -- npx -y kicad-copilot-mcp
Claude Code:
claude mcp add kicad-copilot -- npx -y kicad-copilot-mcp
Generic MCP configuration:
{
"mcpServers": {
"kicad-copilot": {
"command": "npx",
"args": ["-y", "kicad-copilot-mcp"]
}
}
}
Restart the MCP client after adding the server. KiCad Copilot includes local workflow documentation for the agent; tool descriptions expose its installed path automatically.
Requirements
- Node.js 20 or newer
- KiCad 9 or 10
- Python 3 only if EasyEDA2KiCad is not already available
KiCad Copilot searches for kicad-cli in PATH and standard KiCad installation locations, preferring KiCad 10 when multiple supported versions are installed. Set KICAD_CLI_PATH when the executable is stored elsewhere.
The first real-component conversion uses an existing EasyEDA2KiCad installation or installs it automatically into a managed local virtual environment.
Schematic workflow
Ask the agent to inspect a KiCad project or give it the path to a target .kicad_sch file. A typical request can be as simple as:
Open D:\Projects\sensor\sensor.kicad_pro and add a 3.3 V regulator block to the Power sheet.
The agent can inspect the project tree, read the target sheet as compact component/net JSON, find exact components, assemble the requested change, and validate the saved result through KiCad.
Hierarchical projects remain file-oriented: each physical schematic sheet is modified through its own .kicad_sch path, while project-wide context is used where the operation requires the complete signal map.
File synchronization
KiCad Copilot changes files on disk. KiCad does not reliably merge those changes with newer unsaved edits in an already open editor.
Before a write:
- Save intentional changes in KiCad.
- Avoid keeping the only copy of newer work in the editor buffer.
After a write:
- Reload, revert, or reopen the document in KiCad.
- Do not overwrite the updated file with an older editor buffer.
PCB workflow
PCB placement and routing use an explicit review flow:
- Import schematic changes into the target
.kicad_pcbfile. - Describe the outline, holes, constraints, regions, and important components in the placement DSL.
- Generate a mechanical preview without modifying the PCB.
- Review the returned PNG or SVG preview.
- Generate and approve the complete placement.
- Apply the stored placement to the PCB.
- Route the remaining connections locally.
- Inspect the result and run final KiCad DRC.
Placement previews are never applied automatically. The agent receives a layout_id only for an explicitly generated result and uses it to assemble the intended board after review.
Routing, pours, and placement are separate operations. This keeps schematic-to-PCB synchronization explicit and makes it possible to clear or rebuild routing without deleting placed components.
KiCad CLI
get_project_info reports the discovered kicad-cli path and version. Agents should use the native CLI whenever KiCad already provides the operation, including:
- schematic ERC and PCB DRC;
- schematic and PCB PDF/SVG exports;
- 3D PCB renders;
- Gerber and drill generation;
- BOM, position, STEP, STL, GLB, and VRML exports;
- project jobsets and format upgrades.
See KiCad CLI workflow for ready-to-use commands.
Compatibility
| KiCad version | Status |
|---|---|
| KiCad 10 | Supported |
| KiCad 9 | Supported |
Other major versions are rejected because their file formats and CLI behavior are not covered by the current implementation.
Documentation
- AI agent instructions
- Circuit creation and modification
- Projects and hierarchical sheets
- Checkpoints
- PCB workflow
- PCB placement rules
- Placement DSL
- KiCad CLI
- Troubleshooting
Development
git clone https://github.com/biosshot/kicad-copilot.git
cd kicad-copilot
npm install
npm run check
npm start
Run the MCP Inspector with:
npm run inspect
The repository also contains focused schematic, PCB, and routing test scripts for development against disposable files.
License
MIT
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
FinAgent
Freeby mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.
