What is the EasyEDA Copilot MCP server?
Connect MCP clients to EasyEDA Desktop for schematic and PCB design, routing, inspection, and DRC.
How to install EasyEDA 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": {
"easyeda-copilot": {
"command": "npx",
"args": [
"-y",
"easyeda-copilot-mcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"easyeda-copilot": {
"command": "npx",
"args": [
"-y",
"easyeda-copilot-mcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"easyeda-copilot": {
"command": "npx",
"args": [
"-y",
"easyeda-copilot-mcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"easyeda-copilot": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"easyeda-copilot-mcp"
]
}
}
}Claude Code
claude mcp add easyeda-copilot -- npx -y easyeda-copilot-mcpRelated MCP servers
KiCad Copilot
Active
File-oriented MCP server for KiCad schematics, PCB placement, routing, and pours.
4
View repository →TypeScript
MIT