mcpbeat Sign in

Easyeda MCP Pro MCP Server

local only

Easyeda MCP Pro runs on your own machine — the client starts it, so there is no endpoint to ping. 382 installs a week from npm. Last commit 15 Sep 2026.

MCP server for EasyEDA Pro: PCB inspection, BOM, exports, and hardware review.

Installs per day peak 520 · avg 109 · -75% w/w
a month agotoday
382
Installs / week
npm · easyeda-mcp-pro
46
Stars
2 open issues
15 Sep 2026
Last commit
0 releases in 90 days
License
TypeScript

What the code does

We read the source, 19 h ago · rules 3dff92dd89df

Capabilities

What this server is able to do. For an MCP server this is often the job itself — a terminal server runs commands because that is what it is for. Listed so you know what you are plugging in, not as an accusation.

A line of code looks encrypted src/vendors/digikey/client.ts:240
      `/products/v4/search/product-details?digikeyPartNumber=${encodeURIComponent(digiKeyPartNumber)}&locale=${encodeURIComponent(this.config.DIGIKEY_LOCALE)}&currency=${encodeURIComponent(this.config.DIGIKEY_CURRENCY)}`,
Runs an external command src/cli/client-definitions.ts:238
        execFile(join(windowsRoot, 'explorer.exe'), [

Is this your server and something here is wrong? Tell us — corrections are free and do not require a plan.

This code can reach further than it looks

We found places where it runs commands, builds paths or queries from values it is given. None of that is a flaw by itself — it becomes one when the code changes, and code changes quietly between releases. We re-read it on every one.

Three servers free · no card

Connect this server

This server runs on your own machine — install it with the package manager and the client starts it for you. Package name taken from the official registry entry.

run in your terminal
claude mcp add easyeda-mcp-pro -- npx -y easyeda-mcp-pro
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "easyeda-mcp-pro": {
      "args": [
        "-y",
        "easyeda-mcp-pro"
      ],
      "command": "npx"
    }
  }
}
~/.codex/config.toml
[mcp_servers.easyeda-mcp-pro]
command = "npx"
args = ["-y", "easyeda-mcp-pro"]
.cursor/mcp.json
{
  "mcpServers": {
    "easyeda-mcp-pro": {
      "args": [
        "-y",
        "easyeda-mcp-pro"
      ],
      "command": "npx"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "easyeda-mcp-pro": {
      "args": [
        "-y",
        "easyeda-mcp-pro"
      ],
      "command": "npx"
    }
  }
}

This one needs environment variables set before it will start: NODE_ENV (Environment mode), LOG_LEVEL (Pino log level), TOOL_PROFILE (Active tool profile (core, pro, full, dev, experimental)), TOOL_SCOPES (Optional comma- or space-separated capability scope allowlist; empty enables all scopes allowed by the active tool profile.), MCP_PROTOCOL_VERSION (MCP protocol version string), MCP_BRIDGE_BACKEND (Bridge backend: local_bridge or experimental remote_relay), MCP_REMOTE_SESSION_ID (Optional fixed Remote Relay session id for the remote_relay backend), TRANSPORT (Server transport mode (stdio or http)), HTTP_HOST (HTTP bind address), HTTP_PORT (HTTP port), HTTP_AUTH_DISABLED (Disable HTTP transport authentication), HTTP_RATE_LIMIT_MAX (Max requests per minute per IP), CORS_ORIGIN (Allowed CORS origin for HTTP transport), ALLOWED_ORIGINS (Comma-separated list of allowed origins for HTTP transport (use * for wildcard)), MCP_TASKS_ENABLED (Reserved; currently non-functional: parsed for compatibility, but the server does not advertise or execute MCP Tasks.), MCP_APPS_ENABLED (Reserved; currently non-functional: parsed for compatibility, but no MCP Apps UI or resource runtime is registered.), MCP_V2_EXPERIMENTAL (Reserved; currently non-functional: does not change MCP protocol negotiation.), MCP_RAW_EXEC_EXPERIMENTAL (Experimental second gate for raw EasyEDA runtime execution; requires BRIDGE_RAW_EXEC_ENABLED.), BRIDGE_HOST (Bridge WebSocket host for EasyEDA Pro connection), BRIDGE_PORT (Bridge primary port), BRIDGE_PORT_SCAN (Port scan specification (comma-separated ports or ranges)), BRIDGE_TIMEOUT_MS (Bridge call timeout in ms), BRIDGE_HEARTBEAT_MS (Bridge heartbeat interval in ms), BRIDGE_WAIT_FOR_EDA_MS (How long to wait for EasyEDA Pro to become available on startup (ms)), BRIDGE_MAX_PAYLOAD_SIZE (Max bridge payload size in bytes), BRIDGE_TOKEN (Session token for extension auth), EASYEDA_DEV_BRIDGE (Enable EasyEDA dev bridge mode), BRIDGE_RAW_EXEC_ENABLED (Experimental first gate for raw EasyEDA runtime execution; requires MCP_RAW_EXEC_EXPERIMENTAL.), DATA_DIR (Base directory for writable local state; defaults beneath the operating-system user home directory.), SQLITE_PATH (SQLite database path; derived from DATA_DIR unless explicitly configured.), ARTIFACT_DIR (Artifact export directory; derived from DATA_DIR unless explicitly configured.), CACHE_DIR (Cache directory; derived from DATA_DIR unless explicitly configured.), AI_PROVIDER (Reserved; currently non-functional: no in-process AI provider client is invoked.), AI_MODEL (Reserved; currently non-functional: no model is selected or invoked.), AI_API_KEY (Reserved; currently non-functional: do not supply credentials because no provider client consumes them.), AI_MAX_TOKENS (Reserved; currently non-functional: retained only for future provider compatibility.), AI_TIMEOUT_MS (Reserved; currently non-functional: retained only for future provider compatibility.), AI_ALLOW_DESIGN_MUTATIONS (Reserved; currently non-functional: cannot enable AI-originated design mutation.), JLCPCB_MODE (JLCPCB API mode (disabled, mock, approved_api)), JLCPCB_CLIENT_ID (JLCPCB API client identifier.), JLCPCB_CLIENT_SECRET (JLCPCB API client secret), JLCPCB_API_BASE_URL (JLCPCB API base URL), JLCPCB_ENABLE_ORDERING (Enable JLCPCB ordering), JLCSEARCH_ENABLED (Enable LCSC component search), JLCSEARCH_BASE_URL (LCSC search API base URL), LCSC_API_KEY (LCSC API key), KEYLESS_SOURCING_ENABLED (Allow supported public keyless component-sourcing fallbacks when vendor credentials are unavailable.), SOURCING_CACHE_TTL_SECONDS (Component-sourcing cache lifetime in seconds (0 disables cache reuse).), VENDOR_MIN_REQUEST_INTERVAL_MS (Minimum delay in milliseconds between outbound requests to the same sourcing vendor.), MOUSER_ENABLED (Enable Mouser integration), MOUSER_API_KEY (Mouser API key), MOUSER_API_BASE_URL (Mouser API base URL), DIGIKEY_ENABLED (Enable DigiKey integration), DIGIKEY_CLIENT_ID (DigiKey OAuth2 client identifier.), DIGIKEY_CLIENT_SECRET (DigiKey OAuth2 client secret), DIGIKEY_SANDBOX (Use DigiKey sandbox environment), DIGIKEY_LOCALE (DigiKey locale), DIGIKEY_CURRENCY (DigiKey pricing currency), OAUTH_ENABLED (Enable OAuth for HTTP mode), OAUTH_ISSUER (Expected OAuth token issuer), OAUTH_AUDIENCE (Expected OAuth token audience), OAUTH_JWKS_URI (JWKS endpoint for token signature validation), OAUTH_REQUIRED_SCOPES (Required OAuth token scope), OTEL_ENABLED (Reserved; currently non-functional: no OTLP exporter is started.), OTEL_SERVICE_NAME (Reserved; currently non-functional: retained for a future OTLP exporter.), OTEL_EXPORTER_OTLP_ENDPOINT (Reserved; currently non-functional: retained for a future OTLP exporter.), TRACE_SAMPLE_RATE (Reserved; currently non-functional: no OTLP traces are emitted.). The author declared them in the registry entry; get the values from the project itself.

Alternatives to Easyeda MCP Pro

same job, measured the same way
JWT
by ryudi84

MCP server for JWT decoding and inspection

local only
Easyeda Pro MCP
by vlab-software

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

39 installs/wk local only
Rive MCP
by odu33104

Free, editor-less MCP server for Rive: create, edit, inspect, render and preview .riv animations

510 installs/wk local only
PhysiCell Configuration Builder
by marcorusc

MCP server for building, inspecting, and exporting PhysiCell and PhysiBoSS configuration files

185 installs/wk local only
AWS CLI MCP Server
by musaddiq-dev

Python MCP server for AWS CLI inspection and operations

71 installs/wk local only
AlbumentationsX MCP
by dkosarevsky

AlbumentationsX MCP for batch previews, compare preview runs, segmentation masks, and exports.

625 installs/wk local only
Readyorai
by tedoneobichajavascript

Zero-cost MCP server for local code inspection and best-practice recommendations

32 installs/wk local only
Dotnet Template MCP
by yuliiakovalova

MCP server for dotnet new: discover, inspect, preview and create .NET projects from templates.

local only

Easyeda MCP Pro — questions

Answers built from our own checks of this server.

Why is there no uptime for Easyeda MCP Pro?
Easyeda MCP Pro runs on your own machine over stdio — there is no network address to reach, so uptime cannot be measured for it by anyone. What can be measured is adoption: the npm package easyeda-mcp-pro was installed 382 times last week.
How do I connect Easyeda MCP Pro?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It runs locally, so the command pulls easyeda-mcp-pro straight from npm; nothing to host, nothing to sign up for.
How many people use Easyeda MCP Pro?
The npm package easyeda-mcp-pro was installed 382 times in the last week. Week over week that is -75%. We show installs rather than GitHub stars on purpose: a star is a bookmark, an install is someone actually running it.
Is Easyeda MCP Pro open source?
We cannot say either way: written in TypeScript, 46 stars on GitHub and 2 open issues, but we could not determine the licence, and without one the code is not open source by default.