a2n-easyeda-mcp
Provides tools for EasyEDA Pro schematic and PCB design automation: low-level primitives (tracks, vias, nets, DRC, layers, pads, pour/fill), high-level project/document/checkpoint handling, and a local auto-place/auto-wire engine.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@a2n-easyeda-mcpplace a 10k resistor on the schematic"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
a2n.EasyEDA MCP
Pure-interface MCP bridge for EasyEDA Pro. No AI, no API keys, no external server.
It exposes the EasyEDA eda.* API to any MCP client (Claude, Codex, and other
MCP-compatible agents) so the client's own model drives schematic/PCB automation directly.
Merged from the best of two open-source projects:
Low-level
eda.*coverage (PCB primitives, tracks, vias, nets, DRC, layers, pads, pour/fill, manufacture exports, schematic primitives) — inspired byQuincySx/easyeda-agent-mcp-server.High-level project/document/checkpoint handling and a local auto-place + auto-wire engine (
sch_assemble_circuit) — inspired bybiosshot/easyeda-copilot(server/AI parts removed).
Features
Pure interface to EasyEDA Pro — the bridge holds no model and needs no API key.
Full low-level schematic and PCB control plus high-level circuit assembly.
Configurable WebSocket port and
online/offline/hybridcomponent sourcing.Self-contained MCP server (single bundled file) and a packaged
.eextextension.
Related MCP server: easyeda-mcp
Architecture
flowchart LR
Client["MCP Client<br/>(Claude, Codex, ...)"]
Server["a2n MCP Server<br/>(Node.js, stdio)"]
Ext["a2n EasyEDA Extension"]
EDA[("EasyEDA Pro<br/>eda.* API")]
Client -- "stdio (MCP)" --> Server
Server -- "WebSocket :8788" --> Ext
Ext -- "eda.* calls" --> EDA
EDA -- "results" --> Ext
Ext -- "WebSocket" --> Server
Server -- "tool result" --> ClientMCP server (
src/mcp-server): runs locally, opens a WebSocket server on a configurable port (default8788), exposes the MCP tools.EasyEDA extension (
src/extension): connects to the WebSocket server, executeseda.*calls, returns results. Adds ana2n MCPmenu (Connect / Disconnect / Configure / Status / About).
Request flow
sequenceDiagram
participant C as MCP Client
participant S as a2n MCP Server
participant X as EasyEDA Extension
participant E as EasyEDA Pro
C->>S: Tool call (e.g. sch_assemble_circuit)
S->>X: WebSocket request { method, params }
X->>E: eda.* API calls
E-->>X: API result
X-->>S: WebSocket response { result | error }
S-->>C: Tool resultModes (online / offline / hybrid)
Configured in the extension (a2n MCP -> Configure...):
flowchart TD
Q["sch_search_component"] --> M{Mode}
M -- offline --> L["Local / system libraries only"]
M -- online --> O["EasyEDA backend search<br/>(lib_Device.search, devices/searchByCodes)"]
M -- hybrid --> H["Try local first"]
H --> F{Found?}
F -- yes --> R["Return local results"]
F -- no --> Ooffline — component search restricted to local/system libraries.
online — component search via the EasyEDA backend. Uses your existing EasyEDA login; no extra API key.
hybrid — local first, then online fallback (default).
Build
npm install
npm run build # builds the extension (dist/index.js) + MCP server (dist/mcp-server) and packages the .eext
# or just:
npm run compile # builds without packaging the .eextOutputs:
dist/mcp-server/index.js— the MCP server (self-contained, runnable with Node).build/dist/a2n-easyeda-mcp_v<version>.eext— import into EasyEDA Pro (Settings -> Extensions -> Extensions Manager -> Import Extensions).
MCP client configuration
Recommended (after publishing to npm):
{
"mcpServers": {
"a2n-easyeda-mcp": {
"command": "npx",
"args": ["-y", "a2n-easyeda-mcp"]
}
}
}Local build (without npm):
{
"mcpServers": {
"a2n-easyeda-mcp": {
"command": "node",
"args": ["<abs-path>/a2n-easyeda-mcp/dist/mcp-server/index.js", "--port=8788"]
}
}
}The default port is 8788 and matches on both sides, so --port is optional unless you
change it. Override with --port=NNNN or the A2N_EDA_WS_PORT environment variable.
Usage
flowchart LR
A["Import .eext into<br/>EasyEDA Pro"] --> B["Enable<br/>External Interactions"]
B --> C["a2n MCP -> Connect MCP"]
C --> D["Start MCP client<br/>with this server"]
D --> E["Call eda_status<br/>to confirm"]Build and import the
.eextinto EasyEDA Pro; enable "External Interactions".Open a schematic/PCB, then
a2n MCP -> Connect MCP(set the port viaConfigure...if you changed it).Start your MCP client with this server configured, then call
eda_statusto confirm the connection and active mode.
The WebSocket port must match on both sides (server --port / A2N_EDA_WS_PORT and the
extension's Configure dialog).
License
MIT. This project is a derivative work that reuses and adapts code from the MIT-licensed
projects QuincySx/easyeda-agent-mcp-server and biosshot/easyeda-copilot; their
respective copyrights are retained under the same license.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/anwarminarso/a2n-easyeda-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server