PluginBench
MCP Server
Active
MIT

KiCad Copilot MCP Server

io.github.biosshot/kicad-copilot

What is the KiCad Copilot MCP server?

File-oriented MCP server for KiCad schematics, PCB placement, routing, and pours.

How to install KiCad Copilot

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "kicad-copilot": {
      "command": "npx",
      "args": [
        "-y",
        "kicad-copilot-mcp"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "kicad-copilot": {
      "command": "npx",
      "args": [
        "-y",
        "kicad-copilot-mcp"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "kicad-copilot": {
      "command": "npx",
      "args": [
        "-y",
        "kicad-copilot-mcp"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "kicad-copilot": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "kicad-copilot-mcp"
      ]
    }
  }
}
Claude Code
claude mcp add kicad-copilot -- npx -y kicad-copilot-mcp

Related MCP servers

Connect MCP clients to EasyEDA Desktop for schematic and PCB design, routing, inspection, and DRC.

111
TypeScript
MIT
View repository →