Retrieves component pin information and symbol availability data from EasyEDA to assist with electronic part verification and circuit design.
Provides specialized sensor recommendations, including ICs and modules, specifically tailored for projects utilizing the ESPHome platform.
Enables searching for and downloading schematic symbols and PCB footprints in KiCad format for electronic components through SamacSys integration.
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., "@PCB Parts MCP Serverfind an N-channel MOSFET with Vgs(th) < 2V and Rds(on) < 10mΩ"
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.
PCB Parts MCP Server
MCP server for searching electronic components across JLCPCB, Mouser, and DigiKey directly from Claude, Cursor, and other AI coding assistants. 1.5M+ parts with parametric filtering and KiCad footprints. No API key required.
Website: pcbparts.dev
Features
Cross-distributor search: JLCPCB, Mouser, and DigiKey from one MCP server
Parametric search: Filter by electrical specs (Vgs(th) < 2V, Rds(on) < 10mΩ, etc.)
Smart query parsing: "10k 0603 1%" auto-parses into structured filters
Find alternatives: Spec-aware compatibility checking for 120+ component types
KiCad footprints: Download symbols and footprints via SamacSys
Pinout data: Component pin information from EasyEDA symbols
MPN lookup: Find JLCPCB equivalents by manufacturer part number
Sensor recommendation: Find sensor ICs by what they measure, protocol, or platform (1,500+ sensors, 56 measure types)
11 MCP tools across 6 data sources
No API key required for JLCPCB (Mouser/DigiKey optional)
Quick Start
Claude Code
claude mcp add -s user --transport http pcbparts https://pcbparts.dev/mcpOptional — auto-approve all pcbparts tools in ~/.claude/settings.json:
{
"permissions": {
"allow": ["mcp__pcbparts__*"]
}
}Claude Desktop
Add via Settings → Connectors → "Add custom connector", or add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"pcbparts": {
"type": "http",
"url": "https://pcbparts.dev/mcp"
}
}
}Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"pcbparts": {
"type": "http",
"url": "https://pcbparts.dev/mcp"
}
}
}VS Code
Add to .vscode/mcp.json:
{
"servers": {
"pcbparts": {
"type": "http",
"url": "https://pcbparts.dev/mcp"
}
}
}Copilot for Xcode
Add to Extensions config:
{
"mcpServers": {
"pcbparts": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://pcbparts.dev/mcp"]
}
}
}Available Tools
JLCPCB (Local DB + Live API)
Tool | Description |
| Primary search — smart query parsing + parametric spec filters (local DB, 575K+ in-stock parts) |
| Real-time stock verification via live JLCPCB API (use |
| Full details for a specific LCSC part code or MPN lookup |
| Component pin information from EasyEDA symbols |
| Find spec-compatible alternative parts with verification |
| Browse categories, subcategories, and filterable attributes |
Mouser (requires MOUSER_API_KEY)
Tool | Description |
| Cross-reference a specific MPN on Mouser (daily quota applies) |
DigiKey (requires DIGIKEY_CLIENT_ID + DIGIKEY_CLIENT_SECRET)
Tool | Description |
| Cross-reference a specific MPN on DigiKey (daily quota applies) |
Sensor Recommendation (no key required)
Tool | Description |
| Find sensor ICs/modules by measurement need, protocol, or platform (1,500+ sensors, 56 measure types) |
SamacSys (no key required)
Tool | Description |
| Search for ECAD models, datasheets, and footprint availability |
| Download KiCad symbols and footprints for any part |
search vs stock_check
Use jlc_search (default) for:
Parametric filtering ("Vgs(th) < 2V", "voltage >= 25V")
Smart query parsing ("10k 0603 1%" auto-detects value, package, tolerance)
Most searches
Use jlc_stock_check only when you need:
Real-time stock verification before ordering
Out-of-stock or low-stock parts (stock < 10)
Full 1.5M catalog (search indexes 575K+ with stock >= 10)
Library Types
Type | Assembly Fee | Description |
| None | Common parts in JLCPCB's standard library |
| None | Recommended parts with good availability |
| $3/unique part | Less common parts |
| None | Filter shortcut: searches basic + preferred combined |
Subcategory Aliases
Natural language names that map to JLCPCB subcategories (220+ aliases supported):
Category | Aliases |
Capacitors |
|
Resistors |
|
Inductors |
|
Diodes |
|
MOSFETs |
|
Regulators |
|
Crystals |
|
Connectors |
|
LEDs |
|
MCUs |
|
Attribute Aliases
Short names for parametric spec filters:
Component | Attributes |
MOSFETs |
|
Diodes |
|
BJTs |
|
Passives |
|
Use jlc_search_help(subcategory=...) to discover all filterable specs for any subcategory.
Package Expansion
Package filters auto-expand to include variants:
"SOT-23"→ includesSOT-23-3,SOT-23-3L,SOT-23(TO-236)"0603"→ includes1608(metric equivalent)Specific packages like
"QFN-24-EP(4x4)"are NOT expanded
find_alternatives
Finds verified-compatible alternatives using spec-aware rules:
Matches primary spec (resistance, capacitance, etc.)
Verifies
must_matchspecs (dielectric, LED color, relay coil voltage)Verifies
same_or_betterspecs (higher voltage OK, lower tolerance OK)Ranks by library type (basic/preferred saves $3), stock, EasyEDA availability
Supported: Resistors, capacitors, inductors, ferrite beads, MOSFETs, BJTs, diodes (all types), LEDs, optocouplers, crystals, oscillators, LDOs, DC-DC converters, voltage references, WiFi/BT/LoRa modules, switches, relays, connectors, and more (120+ subcategories).
Example Queries
"Find logic-level MOSFETs with Vgs(th) < 2V and Id >= 5A"
"100nF 25V capacitors in 0402 or 0603"
"Find alternatives for C82899 in basic library"
"STM32 microcontrollers with 10000+ stock"
"Cross-reference TPS63020 on Mouser and compare with JLCPCB pricing"
"Get KiCad footprint for ESP32-S3-WROOM-1"
"What sensor should I use to measure CO2 on ESPHome?"
"Recommend an IMU sensor with I2C interface"API Details
Endpoint:
https://pcbparts.dev/mcpTransport: Streamable HTTP (stateless)
Health:
https://pcbparts.dev/healthRate limit: 100 requests/minute per IP
Auth: None required
Self-Hosting
git clone https://github.com/Averyy/pcbparts-mcp
cd pcbparts-mcp
uv venv && uv pip install -e .
.venv/bin/python -m pcbparts_mcp.server # http://localhost:8080/mcpOr with Docker:
docker compose up -d # production (GHCR image)
docker compose -f docker-compose.local.yml up --build # local dev (builds from source)Environment Variables
Variable | Default | Description |
|
| Server port |
|
| Requests per minute per IP |
|
| Daily API request quota per distributor (Mouser/DigiKey) |
| — | Mouser API key (optional, enables Mouser tools) |
| — | DigiKey OAuth2 client ID (optional, enables DigiKey tools) |
| — | DigiKey OAuth2 client secret |
LLM-Readable Documentation
An llms.txt file is available for LLMs and AI agents to quickly understand this service. See llmstxt.org for the spec.
License
MIT
Links
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.