Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. KiCad
K
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:10:47 AM

KiCad

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

KiCad schematic capture, PCB layout, ERC, DRC, and manufacturing exports

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "kicad": {
      "command": "npx",
      "args": [
        "-y",
        "kicad"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

mcp-server-kicad

mcp-server-kicad

Let an AI assistant edit real KiCad projects without corrupting them.

109 MCP tools covering schematic capture, PCB layout, symbol and footprint libraries, ERC and DRC, and manufacturing exports. No screenshots, no copy-paste, no hand-edited s-expressions: the model calls tools, KiCad files change on disk.

PyPI Python KiCad Tests License

Quick start β€’ What you get β€’ Configuration β€’ Tool reference β€’ Requirements β€’ Contributing


What it looks like

text
"Add a 100 nF decoupling cap on U1's VCC pin, then check ERC."

  get_pin_positions            locate U1's VCC and GND pins
  auto_place_decoupling_cap    place C3, wire it, drop the junctions
  run_erc                      report what the change broke

"Now push the netlist to the board and route it."

  update_pcb_from_schematic    sync footprints and pad nets onto the PCB
  autoroute_pcb                route with Freerouting
  run_drc                      clearance, width, and unconnected checks

Every tool works on the real file. Writes go through a byte-preserving substrate, so bytes you did not ask to change reach the disk unchanged, and an edit that cannot be done correctly is refused with the file intact.

Quick start

Claude Code

Install the plugin. It wires up the server and ships the design skills with it:

Terminal
claude plugin marketplace add ProductOfAmerica/mcp-server-kicad
claude plugin install kicad

Claude Desktop

Download kicad-<version>.mcpb from the latest release and install it from Settings, then Extensions. Claude Desktop fetches Python and the package itself, so KiCad is the only thing you need installed first.

Fill in the schematic, board, and export paths it asks for. Unlike the Claude Code plugin, Desktop does not run from your project directory, so nothing is auto-detected. Leave the kicad-cli field blank unless KiCad lives somewhere unusual; stock installs are found on their own, on every platform. The design skills are Claude Code only.

Everything else

Terminal
pip install mcp-server-kicad

Then point your MCP client at the unified server and set cwd to a KiCad project directory so paths resolve themselves:

config.json
{
  "mcpServers": {
    "kicad": {
      "command": "uvx",
      "args": ["--from", "mcp-server-kicad", "mcp-server-kicad"],
      "cwd": "/path/to/your/kicad/project"
    }
  }
}

That single entry registers all 109 tools. Prefer to split them across five smaller servers? See Configuration.

What you get

Five tool servers

Run them as one unified server, or separately when you want a smaller tool surface in context.

ServerToolsWhat it does
mcp-server-kicad-schematic42Schematic read/write, net tracing, ERC, exports (PDF, SVG, DXF, netlist, BOM)
mcp-server-kicad-pcb34Board read/write, netlist import, zones, DRC, autorouting, exports (Gerber, drill, 3D, pick-and-place)
mcp-server-kicad-project24Project scaffolding, hierarchical sheets, hierarchy validation, annotation, cross-sheet net tracing
mcp-server-kicad-symbol5Symbol library browsing, authoring, SVG export, format upgrade
mcp-server-kicad-footprint4Footprint library browsing, SVG export, format upgrade

Six design skills (Claude Code plugin)

Tools alone let a model click every button. The bundled skills teach it which buttons, in what order, and what "done" looks like.

SkillKicks in when
using-kicadAny electronics or EDA conversation starts. Routes to the right skill below
circuit-designChoosing topology, regulators, and component values, before any file exists
schematic-planPlanning exact placement coordinates and wiring. Pure planning, no writes
schematic-designExecuting that plan, or modifying an existing schematic
pcb-layoutPlacing footprints, routing, zones, stackup, trace widths
verificationERC and DRC failures, unconnected nets, export prep

The design skills hand their artifacts to independent reviewer subagents (agents/) before moving on, so a bad BOM or a bad placement plan gets caught before it becomes a schematic.

Configuration

Split servers

Five entries instead of one, when you want to load only part of the tool surface:

Five-server MCP config
config.json
{
  "mcpServers": {
    "kicad-schematic": {
      "command": "uvx",
      "args": ["--from", "mcp-server-kicad", "mcp-server-kicad-schematic"],
      "cwd": "/path/to/your/kicad/project"
    },
    "kicad-pcb": {
      "command": "uvx",
      "args": ["--from", "mcp-server-kicad", "mcp-server-kicad-pcb"],
      "cwd": "/path/to/your/kicad/project"
    },
    "kicad-symbol": {
      "command": "uvx",
      "args": ["--from", "mcp-server-kicad", "mcp-server-kicad-symbol"],
      "cwd": "/path/to/your/kicad/project"
    },
    "kicad-footprint": {
      "command": "uvx",
      "args": ["--from", "mcp-server-kicad", "mcp-server-kicad-footprint"],
      "cwd": "/path/to/your/kicad/project"
    },
    "kicad-project": {
      "command": "uvx",
      "args": ["--from", "mcp-server-kicad", "mcp-server-kicad-project"],
      "cwd": "/path/to/your/kicad/project"
    }
  }
}

Each is also runnable directly:

bash
uvx --from mcp-server-kicad mcp-server-kicad-schematic

How paths resolve

Highest priority wins:

  1. Tool parameters. Every tool accepts an explicit path.
  2. Environment variables. They override anything auto-detected.
  3. Auto-detect. The working directory is scanned for a .kicad_pro, and the schematic, board, and library paths are derived from it.
VariablePoints at
KICAD_SCH_PATHa .kicad_sch schematic file
KICAD_PCB_PATHa .kicad_pcb board file
KICAD_SYM_LIBa .kicad_sym symbol library file
KICAD_FP_LIBa .pretty footprint library directory
KICAD_OUTPUT_DIRwhere exports and reports are written

Requirements

  • Python 3.10+
  • KiCad 9.x or 10.x, for the tools that shell out to kicad-cli: ERC, DRC, and every export. The read and write tools parse files directly and need no KiCad install at all.

CI runs the full suite on Linux against KiCad 9 and on macOS against KiCad 10, plus a KiCad-free matrix across Python 3.10 through 3.13.

Finding your KiCad install

kicad-cli is looked up on PATH, then inside /Applications/KiCad/KiCad.app on macOS, then in the standard Windows install folders, machine-wide under Program Files and per-user under AppData, newest version first. Neither installer adds it to PATH. Everything else in the KiCad tree is located relative to it, the same way KiCad itself does it, so a stock install on any platform needs no configuration: the stock symbol libraries and the bundled Python that provides pcbnew are both found automatically.

Override any of it if your install is unusual:

VariableOverrides
KICAD_CLI_PATHthe kicad-cli executable, and everything derived from its location
KICAD_SYMBOL_DIRthe directory holding the stock .kicad_sym libraries
KICAD_PYTHONthe interpreter used for pcbnew (fill_zones, autoroute_pcb)

CLI-backed tools are always registered. Without kicad-cli they fail with a message naming KICAD_CLI_PATH, rather than vanishing from the tool list.

KiCad 10 files

FileWhat works today
.kicad_schEverything, read and write: the whole schematic server and the whole project server
.kicad_pcbEverything, read and write
.kicad_sym, .kicad_modEverything: your own libraries as well as the stock ones

Every tool parses and edits through the byte-preserving substrate, so none of them refuses a file on its format version and none of them rewrites bytes you did not ask to change. One caveat, and it is not about the file format: autoroute_pcb hands the board to pcbnew for the DSN export and the SES import, so it additionally needs a pcbnew whose era matches the board. It checks that before it starts. A KiCad 10 board on a KiCad 9 pcbnew is refused with a message naming both versions, rather than failing somewhere inside the export; install KiCad 10 or point KICAD_PYTHON at one. The other direction runs, and the result carries a warning: a KiCad 9 board routed through a KiCad 10 pcbnew comes back as a routed copy in the KiCad 10 format, because that is what pcbnew saves. Your original board is untouched either way. The design behind the substrate is written up in docs/adr-cst-substrate.md.

Windows: Controlled Folder Access

Windows Defender's ransomware protection, Controlled Folder Access, guards your Documents folder and blocks writes from applications it does not recognise. KiCad keeps its own data there, a 3D cache and templates under Documents\KiCad, so a blocked write kills kicad-cli at startup with an access violation (exit 3221225477) before it does any work. Every invocation fails, --version included.

The block surfaces as error 2: The system cannot find the file specified, which is why this reads like a missing folder rather than a permission problem. Measured on a machine with the feature on: the folder is plainly there and a write into it still fails with FileNotFoundError.

kicad-cli is handled for you. On that crash the server retries once with KiCad's own KICAD_DOCUMENTS_HOME pointed at a local folder outside the protected set, then reuses it for the session. Nothing to configure, and a machine without the block never sees any of it. Setting KICAD_DOCUMENTS_HOME yourself picks the folder and disables the retry, on the grounds that a directory you chose is yours to fix.

Your project files are a separate matter. The same block applies to any write, so if your KiCad project lives under Documents, the write tools can fail the same confusing way, and the server cannot repair that: it is the location you asked it to edit. Either keep projects outside the protected folders, or allow the tools through at Windows Security, Virus & threat protection, Ransomware protection, Allow an app through Controlled folder access.

Tool reference

Schematic (42 tools)

Read

ToolDescription
get_schematic_summaryGet item counts for a schematic sheet
list_schematic_componentsList all components (symbols) on a sheet
list_schematic_labelsList all net labels on a sheet
list_schematic_wiresList all wires on a sheet
list_schematic_global_labelsList all global labels on a sheet
list_schematic_hierarchical_labelsList all hierarchical labels on a sheet
list_schematic_sheetsList all hierarchical sheet blocks on a sheet
list_schematic_junctionsList all junctions on a sheet
list_schematic_no_connectsList all no-connect flags on a sheet
list_schematic_bus_entriesList all bus entries on a sheet
get_symbol_pinsGet pin info for a symbol in the schematic's lib_symbols
get_pin_positionsGet absolute pin positions for a placed component, accounting for rotation and mirror
get_net_connectionsGet all connections for a named net (multi-hop BFS wire tracing)
list_unconnected_pinsList unconnected pins from ERC data

Write

ToolDescription
place_componentPlace a component in the schematic
remove_componentRemove a component by reference designator
move_componentMove a placed component to a new position
set_component_propertySet any property (Value, Reference, Footprint, ...) on a placed component
add_lib_symbolLoad a symbol definition from a .kicad_sym library into the schematic
add_wiresAdd one or more wires between points, auto-creating junctions on T-connections
remove_wireRemove a wire segment
add_junctionsAdd one or more junction dots
remove_junctionRemove a junction dot
add_labelAdd a net label at a position
remove_labelRemove a net label or global label
add_global_labelAdd a global net label visible across all sheets
add_hierarchical_labelAdd a hierarchical label for sheet-to-sheet connections
remove_hierarchical_labelRemove a hierarchical label by name or UUID
modify_hierarchical_labelModify text, shape, or position of a hierarchical label
add_power_symbolPlace a power symbol (VCC, GND, +3V3, ...) with auto PWR_FLAG
add_textAdd a text annotation to the schematic
remove_textRemove text annotation(s) by content, optionally filtered by position
wire_pins_to_netWire one or more pins to a named net
connect_pinsWire two component pins together
auto_place_decoupling_capAutomatically place a decoupling capacitor near an IC
no_connect_pinPlace a no-connect flag on an unused pin (idempotent)
remove_no_connectRemove no-connect flag(s) from a pin
set_page_sizeSet the schematic page size

Analysis and export

ToolDescription
run_ercRun Electrical Rules Check, with project_path support for hierarchies
export_schematicExport schematic to PDF, SVG, or DXF
export_netlistExport the schematic netlist
export_bomExport a Bill of Materials as CSV
PCB (34 tools)

Read

ToolDescription
list_pcb_footprintsList all footprints on the board
list_pcb_tracesList all traces on the board
list_pcb_netsList all nets on the board
list_pcb_zonesList all zones on the board
list_pcb_layersList all layers on the board
list_pcb_graphic_itemsList all graphic items on the board
get_board_infoBoard summary: footprint count, trace count, net count, thickness
get_footprint_padsGet pad info for a placed footprint
get_footprint_boundsGet the board-coordinate bounding box of a placed footprint

Write

ToolDescription
place_footprintPlace a footprint on the board
move_footprintMove a footprint to a new position
remove_footprintRemove a footprint by reference designator
add_traceAdd a trace segment between two points
remove_tracesRemove trace segments matching filters
set_trace_widthChange the width of existing traces
remove_dangling_tracksDetect and remove trace segments with unconnected endpoints
add_viaAdd a via at a position
add_thermal_viasAdd a grid of thermal vias under a footprint pad
add_pcb_textAdd text to the board (silkscreen, fab layer, ...)
add_pcb_lineAdd a graphic line (edge cuts, silkscreen, ...)
add_copper_zoneCreate an unfilled copper zone
add_keepout_zoneCreate a keep-out zone restricting tracks, vias, pads, pours, or footprints
fill_zonesFill all copper zones on the board
set_net_classCreate or update a net class with design rules
update_pcb_from_schematicImport or sync the schematic netlist onto the board (footprints and pad nets)

Analysis and export

ToolDescription
run_drcRun Design Rules Check on the board
check_placementCheck whether a proposed footprint position hits a keep-out zone or the board edge
validate_boardCheck every placed footprint against keep-out zones and the board edge
autoroute_pcbAutoroute traces using the Freerouting autorouter
export_pcbExport board layers to PDF, SVG, or DXF
export_gerbersExport Gerber files, all layers or a specific list
export_3dExport a 3D model (STEP/STL/GLB) or render the 3D view to PNG
export_positionsExport a component position file for pick and place
export_ipc2581Export in IPC-2581 format for manufacturing data exchange
Project (24 tools)

Scaffolding

ToolDescription
create_projectCreate a KiCad 9 project (.kicad_pro, .kicad_prl, .kicad_sch)
create_schematicCreate a blank schematic file
create_symbol_libraryCreate a blank symbol library file
create_sym_lib_tableCreate a sym-lib-table file

Sheet management

ToolDescription
add_hierarchical_sheetAdd a hierarchical sheet with matching labels in the child
remove_hierarchical_sheetRemove a hierarchical sheet block from a parent
modify_hierarchical_sheetModify sheet name, file, width, or height
move_hierarchical_sheetMove a sheet block to a new position, pins included
add_sheet_pinAdd a pin to an existing hierarchical sheet block
remove_sheet_pinRemove a pin from a hierarchical sheet block
duplicate_sheetDuplicate a sheet, copying the child file with new UUIDs
reorder_sheet_pagesReorder sheets by specifying the desired UUID order

Hierarchy inspection

ToolDescription
is_root_schematicCheck whether a schematic is the root or a sub-sheet
list_hierarchyList the full sheet hierarchy tree from root
get_sheet_infoGet sheet details with pin and label matching status
validate_hierarchyCheck for orphaned labels and pins, direction mismatches, duplicate refs

Cross-sheet analysis

ToolDescription
trace_hierarchical_netTrace a net across the hierarchy through pins and labels
list_cross_sheet_netsList all nets crossing sheet boundaries
get_symbol_instancesList symbol instances from the root schematic

Annotation, export, utilities

ToolDescription
annotate_schematicAuto-assign reference designators, respecting hierarchy
export_hierarchical_netlistExport a netlist with hierarchy info (requires kicad-cli)
flatten_hierarchyFlatten a hierarchical schematic into a single sheet
run_jobsetRun a KiCad jobset file
get_versionGet KiCad version information
Symbol and footprint libraries (9 tools)

Symbol

ToolDescription
list_lib_symbolsList all symbols in a .kicad_sym library
get_symbol_infoGet detailed pin and property info for a library symbol
add_symbolAdd a new symbol to a .kicad_sym library
export_symbol_svgExport a symbol library to SVG images
upgrade_symbol_libUpgrade a symbol library to the current KiCad format

Footprint

ToolDescription
list_lib_footprintsList all footprints in a .pretty library directory
get_footprint_infoGet pad and outline details for a .kicad_mod file
export_footprint_svgExport a footprint to SVG
upgrade_footprint_libUpgrade a footprint library to the current KiCad format

Debugging

Drive the servers by hand with the MCP Inspector:

Terminal
npx @modelcontextprotocol/inspector uvx --from mcp-server-kicad mcp-server-kicad

Contributing

Issues and pull requests are welcome. See CONTRIBUTING.md for development setup, and docs/adr-cst-substrate.md for the architecture decisions behind the byte-preserving write path.

  • Report a bug
  • Browse open issues
  • Security policy

License

MIT

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • W
    Windows MCP

    An MCP Server for computer-use in Windows OS

    πŸ’» Developer Tools1 views
    Compare vs Windows MCP β†’
  • Shadcn Ui Mcp Server logoShadcn Ui Mcp Server

    MCP server that gives AI assistants seamless access to shadcn/ui v4 components, blocks, demos, and metadata.

    πŸ’» Developer Tools2 views
    Compare vs Shadcn Ui Mcp Server β†’

Frequently Asked Questions about KiCad

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "kicad": { "command": "npx", "args": ["-y", "KiCad"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewKiCad AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/kicad?style=directory)](https://allmcps.com/mcp/kicad)
HTML Embed
<a href="https://allmcps.com/mcp/kicad"><img src="https://allmcps.com/api/badge/kicad?style=directory" alt="KiCad on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to KiCad β†’Install in Claude DesktopInstall in CursorInstall in VS Code