npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vlabsoft/easyeda-pro-mcp

v1.0.2

Published

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

Readme

EasyEDA Pro MCP Bridge

Live MCP integration for EasyEDA Pro through an EasyEDA extension.

The MCP server runs locally over stdio for MCP clients and also starts a WebSocket bridge at ws://127.0.0.1:8765. The EasyEDA Pro extension connects to that local bridge and executes read, navigation, export, and explicitly confirmed actions inside the active editor session.

Features

  • Live status and editor context from the active EasyEDA Pro instance.
  • Component and net lookup using EasyEDA Pro extension APIs.
  • Generic schematic analysis: components, pins, nets, wires, labels, unconnected pins, and validation findings.
  • Navigation helpers for components, coordinates, regions, and board outline zoom.
  • BOM, netlist, Gerber, and PDF export via EasyEDA Pro manufacture APIs.
  • Mutating actions routed through easyeda_confirmed_action and blocked unless the confirmation text is explicit.
  • No offline .epro parsing in this version.

Build and Test

npm install
npm run build
npm run build:extension
npm test

MCP Client Configuration

Build first, then point your MCP client at the compiled server:

{
  "mcpServers": {
    "easyeda-pro": {
      "command": "node",
      "args": ["C:\\Users\\vlabsoft\\Documents\\easyeda_mcp\\dist\\index.js"]
    }
  }
}

Optional environment variables:

  • EASYEDA_MCP_WS_HOST: defaults to 127.0.0.1.
  • EASYEDA_MCP_WS_PORT: defaults to 8765.

EasyEDA Pro Extension Setup

  1. Run npm run build:extension.
  2. Load the extension folder as a local EasyEDA Pro extension.
  3. Enable external interaction permission for the extension; EasyEDA Pro requires this for SYS_WebSocket.
  4. Keep the MCP server running.
  5. Use the EasyEDA Pro menu MCP Bridge -> Connect to MCP if it does not connect automatically.
  6. Call easyeda_live_status from your MCP client and check that connected is true.

The extension entry is extension/dist/index.js, and the manifest is extension/extension.json.

Tools

  • easyeda_live_status
  • easyeda_get_context
  • easyeda_find_component
  • easyeda_find_net
  • easyeda_schematic_snapshot
  • easyeda_list_schematic_components
  • easyeda_get_component_pins
  • easyeda_trace_net
  • easyeda_trace_component
  • easyeda_find_unconnected_pins
  • easyeda_validate_schematic_area
  • easyeda_navigate_component
  • easyeda_navigate_region
  • easyeda_zoom_board
  • easyeda_export_bom
  • easyeda_export_netlist
  • easyeda_export_gerber
  • easyeda_export_pdf
  • easyeda_confirmed_action

Safety

Inspection, navigation, and export tools run directly. Project-changing operations are limited to easyeda_confirmed_action, and the confirmation field must contain an explicit phrase such as confirma salvar or I confirm.

Commercial/order operations are intentionally not implemented.