easyeda-copilot-mcp
v1.0.3
Published
MCP server for EasyEDA Copilot
Readme
easyeda-copilot-mcp
MCP server for EasyEDA Copilot.
Usage
- Add this MCP server to your agent.
- Start Codex, Claude Code, or another MCP client with this MCP server enabled.
- Open a schematic in EasyEDA Pro.
- EasyEDA Copilot will connect automatically. Use
Copilot -> MCPonly to pause or resume scanning.
Build
git clone https://github.com/biosshot/easyeda-copilot
cd easyeda-copilot/mcp
npm install
npm run buildMCP config with npx
Codex:
codex mcp add easyeda-copilot -- npx easyeda-copilot-mcpClaude Code:
claude mcp add easyeda-copilot -- npx easyeda-copilot-mcpGeneric MCP config:
{
"mcpServers": {
"easyeda-copilot": {
"command": "npx",
"args": ["-y", "easyeda-copilot-mcp"]
}
}
}MCP config with node
{
"mcpServers": {
"easyeda-copilot": {
"command": "node",
"args": ["/absolute/path/to/easyeda-copilot/mcp/dist/index.js"]
}
}
}