cyberivy
KonnectKiCadPCB DesignMCPHardware EngineeringOpen Source AIElectronicsAI Agents

Konnect lets AI agents work directly in KiCad

September 1, 2026

Dunkle Leiterplatte mit sichtbaren Leiterbahnen und Bauteilen neben dem Konnect-Projektnamen

Konnect connects AI agents to KiCad 10 through MCP. The open-source plugin edits schematics and boards, checks designs, and exports manufacturing data.

What this is about

Konnect is an open-source plugin that connects AI assistants to KiCad 10 through the Model Context Protocol. Instead of merely describing components, traces, or checks in chat, an agent can execute defined functions directly in an electronics project. The project targets electronics developers, makers, and teams designing schematics and printed circuit boards with KiCad.

Version 0.11.0, released on August 29, 2026, is explicitly labeled beta. Konnect is built as a single Rust binary and licensed under AGPL-3.0; the project also offers commercial licenses to businesses. That combination makes the tool practical to test, but its maturity, license, and workflow require careful review.

What Konnect actually does

According to the current project documentation, Konnect exposes 221 tools in 20 on-demand groups. A compatible agent can place and connect components, move footprints, route traces, run electrical and geometric checks, and export Gerber, drill, bill-of-materials, and pick-and-place files. A local component search uses a catalog for JLCPCB. Prepared reference circuits cover USB-C, voltage regulators, and basic microcontroller circuits, among other patterns.

For boards, the plugin uses KiCad 10's official IPC interface. Changes can therefore appear in the running board editor and enter its undo history. Konnect edits schematic files through its own S-expression engine with atomic writes. To reduce model context, a router loads only the tool groups currently needed. Logs and call statistics are intended to make failures easier to diagnose.

Why it matters

Electronics design combines many separate steps: schematic capture, library selection, placement, routing, design rules, and manufacturing export. General chatbots can suggest changes, but without an integration they cannot see the current project state or the results of ERC and DRC. Konnect creates a controllable interface to these concrete tasks.

The distinctive value is the link between natural language and inspectable CAD actions. A developer can ask the agent to add a power supply and then inspect the actual KiCad project to see which components, nets, and rules changed. This goes beyond a code suggestion, but it also increases risk: a convincing agent can produce an electrically wrong or poorly manufacturable board. Expert acceptance remains mandatory.

In plain language

Konnect is like a workbench where an assistant does not just hear instructions but may use the labeled tools. You can ask for a connector to be added, and the assistant selects the relevant tool and performs the step. Before ordering the board, an experienced person still has to inspect every connection, clearance, and check result.

A practical example

A hardware developer is building a small sensor board with 45 components. He asks the agent to add a USB-C connector, a 3.3-volt regulator, and suitable decoupling capacitors. Konnect can use reference circuits and component functions, create the schematic connections, and then run ERC.

The agent then makes an initial placement on a 60-by-40-millimeter board, routes selected nets, and runs DRC. The developer compares the Git diff of project files and checks data sheets, current capacity, impedance, thermal paths, and mechanical clearances. Only after manual approval does he generate Gerber, drill, and assembly files. In this workflow, Konnect accelerates repeatable operation without assuming engineering responsibility.

Scope and limits

First, Konnect is a beta release. The project describes Windows as the best-tested platform; macOS works according to its documentation, while Linux passes automated tests but has had less platform-specific quality assurance. Production projects therefore need an isolated test copy and reproducible checks.

Second, integration does not equal correct hardware design. ERC and DRC detect only configured rules. Analog stability, electromagnetic compatibility, high-frequency behavior, heat, and manufacturability may require additional simulation, measurement, and review.

Third, agents receive broad write capabilities. A faulty call can modify many project objects. Version control, backups, limited permissions, and inspection of every diff are mandatory. The AGPL-3.0 license also matters: businesses must determine whether its copyleft obligations fit the intended use or whether a commercial license is required.

The sensible next test is a small, versioned KiCad 10 project without confidential content. The agent should initially place one component, connect two nets, and run ERC. Only after the changes, undo behavior, and logs are understandable should a larger workflow be attempted.

SEO & GEO keywords

Konnect, KiCad 10, AI PCB design, PCB design, schematic automation, Model Context Protocol, MCP, electronics engineering, ERC, DRC, Gerber export

πŸ’‘ In plain English

Konnect gives AI agents concrete tools inside KiCad 10. They can edit schematics and boards and start checks and exports, while technical approval remains human responsibility.

Key Takeaways

  • β†’Konnect connects compatible AI agents to KiCad 10 through MCP.
  • β†’The plugin covers schematics, boards, checks, and manufacturing export.
  • β†’Version 0.11.0 is beta and should first be tested on a project copy.
  • β†’ERC and DRC do not replace expert review of electrical behavior and manufacturability.
  • β†’Businesses need to assess AGPL-3.0 and the commercial license option in advance.

FAQ

Which KiCad version does Konnect require?

The current documentation names KiCad 10. Many board functions require the editor to be running with the board open.

Can Konnect design a finished board by itself?

The plugin can automate many steps but does not guarantee a correct or manufacturable design. Expert review, simulation, and testing remain necessary.

Is Konnect free to use?

The source code uses AGPL-3.0. For business use where that license is unsuitable, the project lists a commercial license.

Which platform has the strongest support?

According to the project, Windows is the best-tested platform. macOS is supported; Linux passes automated tests but has received less platform-specific review.

Sources & Context