# io.github.VLab-Software/easyeda-pro-mcp (npm · @vlabsoft/easyeda-pro-mcp)

MCP server and EasyEDA Pro extension bridge for live project assistance.

- Trust score: 63/100 (medium)
- Change this week: +21
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@vlabsoft/easyeda-pro-mcp`: 63/100 (this document), [markdown](https://verifymcp.io/servers/vlab-software-easyeda-pro-mcp/vlabsoft-easyeda-pro-mcp.md), [page](https://verifymcp.io/servers/vlab-software-easyeda-pro-mcp/vlabsoft-easyeda-pro-mcp)

## Channel facts

- Registry: `npm`
- Package: `@vlabsoft/easyeda-pro-mcp`
- Version: `1.0.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 68 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 57/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 1185 tokens (~62/item across 19 items; 19 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 73/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 20% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add vlab-software-easyeda-pro-mcp -- npx -y @vlabsoft/easyeda-pro-mcp
```

### Codex

```bash
codex mcp add vlab-software-easyeda-pro-mcp -- npx -y @vlabsoft/easyeda-pro-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vlab-software-easyeda-pro-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@vlabsoft/easyeda-pro-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add vlab-software-easyeda-pro-mcp --command npx --arg -y --arg @vlabsoft/easyeda-pro-mcp
```

### Hermes

```yaml
mcp_servers:
  vlab-software-easyeda-pro-mcp:
    command: "npx"
    args: ["-y", "@vlabsoft/easyeda-pro-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "vlab-software-easyeda-pro-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@vlabsoft/easyeda-pro-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 63, +30)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.27
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Schema quality: unverified → fair
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-08-02 (score 33, +10)

- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified

### 2026-08-01 (score 23, +18)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −19)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 24, −18)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 42)

First indexed and scored.

## MCP tools (19)

### `easyeda_live_status` (~28 tokens)

EasyEDA Pro live status

Checks whether the EasyEDA Pro extension is connected and reports active document/capability information.

### `easyeda_get_context` (~40 tokens)

Get EasyEDA Pro editor context

Summarizes active project, active document, selection, and editor context from the open EasyEDA Pro instance.

Input parameters:

- `timeoutMs` (integer)

### `easyeda_find_component` (~70 tokens)

Find EasyEDA Pro component

Finds a component by designator, name, value, footprint, or property in the active EasyEDA Pro project.

Input parameters:

- `limit` (integer)
- `query` (string, required): Designator, value, name, footprint, or property text to search for.
- `timeoutMs` (integer)

### `easyeda_find_net` (~57 tokens)

Find EasyEDA Pro net

Finds a net by name and returns available connections or metadata from the active project.

Input parameters:

- `limit` (integer)
- `query` (string, required): Net name or partial net name to search for.
- `timeoutMs` (integer)

### `easyeda_schematic_snapshot` (~78 tokens)

Get EasyEDA Pro schematic snapshot

Returns a structured snapshot of the active schematic: components, pins, nets, wires, labels, and confidence metadata.

Input parameters:

- `allPages` (boolean): Collect all schematic pages when EasyEDA Pro exposes them.
- `includeRaw` (boolean): Include compact raw EasyEDA API data for fallback reasoning.
- `timeoutMs` (integer)

### `easyeda_list_schematic_components` (~75 tokens)

List schematic components

Lists normalized schematic components with designator, value/name, footprint, position, and key properties.

Input parameters:

- `allPages` (boolean)
- `includeRaw` (boolean)
- `limit` (integer)
- `query` (string): Optional text filter against component fields.
- `timeoutMs` (integer)

### `easyeda_get_component_pins` (~85 tokens)

Get schematic component pins

Returns all known pins for a schematic component, including pin number, pin name, position, and net when available.

Input parameters:

- `allPages` (boolean)
- `includeRaw` (boolean)
- `query` (string, required): Component designator or text query, such as U1, USB1, or regulator part number.
- `timeoutMs` (integer)

### `easyeda_trace_net` (~79 tokens)

Trace schematic net

Shows the pins, components, wires, labels, and ports associated with a schematic net.

Input parameters:

- `allPages` (boolean)
- `includeRaw` (boolean)
- `query` (string, required): Net name or partial net name, such as GND, VCC_5V, or SDA.
- `timeoutMs` (integer)

### `easyeda_trace_component` (~72 tokens)

Trace schematic component

Groups a schematic component's connections by pin and net, with evidence for each connection.

Input parameters:

- `allPages` (boolean)
- `includeRaw` (boolean)
- `query` (string, required): Component designator or text query, such as U1 or USB1.
- `timeoutMs` (integer)

### `easyeda_find_unconnected_pins` (~80 tokens)

Find unconnected schematic pins

Identifies schematic pins without a confirmed net in the normalized EasyEDA Pro data.

Input parameters:

- `allPages` (boolean)
- `includePowerPins` (boolean): When false, suppress pins whose names look like power pins.
- `includeRaw` (boolean)
- `limit` (integer)
- `timeoutMs` (integer)

### `easyeda_validate_schematic_area` (~92 tokens)

Validate schematic area

Runs generic read-only schematic checks against selected components/nets or the whole schematic.

Input parameters:

- `allPages` (boolean)
- `components` (array): Optional component designators or queries to focus on.
- `includeGlobalChecks` (boolean)
- `includeRaw` (boolean)
- `nets` (array): Optional net names or queries to focus on.
- `timeoutMs` (integer)

### `easyeda_navigate_component` (~51 tokens)

Navigate to EasyEDA Pro component

Navigates/highlights a component in the EasyEDA Pro editor when the extension can locate it.

Input parameters:

- `query` (string, required): Component designator or search query.
- `timeoutMs` (integer)

### `easyeda_navigate_region` (~78 tokens)

Navigate to EasyEDA Pro region

Navigates to coordinates or a rectangular region in the active EasyEDA Pro PCB/document.

Input parameters:

- `bottom` (number)
- `left` (number)
- `right` (number)
- `timeoutMs` (integer)
- `top` (number)
- `x` (number)
- `y` (number)

### `easyeda_zoom_board` (~29 tokens)

Zoom EasyEDA Pro board outline

Zooms the active PCB editor to the board outline.

Input parameters:

- `timeoutMs` (integer)

### `easyeda_export_bom` (~56 tokens)

Export EasyEDA Pro BOM

Exports a BOM from the active EasyEDA Pro project through the extension.

Input parameters:

- `fileName` (string)
- `format` (string)
- `scope` (string)
- `timeoutMs` (integer)

### `easyeda_export_netlist` (~52 tokens)

Export EasyEDA Pro netlist

Exports a netlist from the active EasyEDA Pro schematic or PCB through the extension.

Input parameters:

- `fileName` (string)
- `scope` (string)
- `timeoutMs` (integer)

### `easyeda_export_gerber` (~45 tokens)

Export EasyEDA Pro Gerber

Exports Gerber fabrication files from the active EasyEDA Pro PCB through the extension.

Input parameters:

- `fileName` (string)
- `timeoutMs` (integer)

### `easyeda_export_pdf` (~48 tokens)

Export EasyEDA Pro PDF

Exports a PDF from the active EasyEDA Pro document through the extension.

Input parameters:

- `fileName` (string)
- `scope` (string)
- `timeoutMs` (integer)

### `easyeda_confirmed_action` (~70 tokens)

Confirmed EasyEDA Pro action

Runs a mutating EasyEDA Pro action only when the confirmation text explicitly confirms the action.

Input parameters:

- `action` (string, required)
- `confirmation` (string, required): Must include an explicit confirmation phrase such as 'confirma salvar'.
- `params` (object)
- `timeoutMs` (integer)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/vlab-software-easyeda-pro-mcp/vlabsoft-easyeda-pro-mcp#diagnostics

## Score history

- 2026-08-03: 63
- 2026-08-02: 33
- 2026-08-01: 23
- 2026-07-31: 5
- 2026-07-30: 24
- 2026-07-28: 42
- 2026-07-27: 42

## Links

- npm package: https://www.npmjs.com/package/@vlabsoft/easyeda-pro-mcp
- Socket report: https://socket.dev/npm/package/@vlabsoft/easyeda-pro-mcp
- Repository: https://github.com/VLab-Software/easyeda_mcp
- Changelog RSS feed: https://verifymcp.io/servers/vlab-software-easyeda-pro-mcp/vlabsoft-easyeda-pro-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/vlab-software-easyeda-pro-mcp/vlabsoft-easyeda-pro-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/vlab-software-easyeda-pro-mcp/vlabsoft-easyeda-pro-mcp
