jlcpcb-mcp
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., "@jlcpcb-mcpsearch for 10k resistor 0805 package"
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.
jlcpcb-mcp
An MCP server for JLCPCB / LCSC components. Search the parts catalog and pull live stock, pricing tiers, datasheets, specifications, and images — straight into Claude, Cursor, or any MCP client.
It uses a hybrid data model:
Data | Source | Freshness |
Component catalog (descriptions, packages, attributes, categories) | Local SQLite, built from yaqwsx/jlcparts | Snapshot from your last refresh |
Stock levels | Live JLCPCB API ( | Real-time, per query |
Pricing tiers | Live JLCPCB API | Real-time, per query |
Datasheet URL | Live JLCPCB API | Real-time, per query |
The catalog is downloaded and built into a local SQLite database on first use (a one-time download of ~50 MB that expands to a larger on-disk database). Stock, pricing, and datasheet links are always fetched live, so they're current regardless of catalog age. No API key or account is required.
Tools
Catalog + live data (no credentials needed)
Tool | Description |
| Search the catalog by keyword + filters (category, package, basic-only, min stock) and parametric values (resistance, capacitance, voltage rating, power, output voltage/current, input voltage). Results are enriched with live stock/pricing and ranked Basic-first, then by stock, then by price. |
| Full details for one part: catalog metadata + live stock, full pricing tiers, specifications, datasheet, and images. |
| Live, real-time stock quantity for a part (falls back to the catalog snapshot). |
| Live quantity-break pricing tiers (USD) for a part. |
| Datasheet PDF URL for a part (live, with catalog fallback). |
| List catalog categories/subcategories with component counts. |
| Report the local catalog DB location, size, component count, and last build time. |
| Rebuild the local catalog from the latest yaqwsx/jlcparts snapshot. |
Official JLCPCB Open API (requires credentials)
These call the authenticated JLCPCB Open API (open.jlcpcb.com,
HMAC-SHA256 signed). They return a "not configured" message until you set the credentials
below. Apply for access at https://api.jlcpcb.com (approval is based on your order history).
Tool | Description |
| Authoritative details (specs/stock/price/attributes) for one or more LCSC codes. |
| Browse the full assembly component library, paginated. |
| List your account's private/consigned component library. |
| Cursor-paginated bulk feed of the whole catalog ( |
PCB / SMT-stencil ordering (requires credentials)
Tool | Description |
| Upload a Gerber archive; returns a |
| Upload a blind/buried-via stackup image. |
| List impedance template settings for a stackup. |
| Get the SMT stencil (steel) price configuration. |
| Quote price + lead time for a PCB / stencil order (no order placed). |
| Order details by batch number. |
| Engineering audit (review) info for an uploaded design. |
| Work-in-progress production status for an order. |
| Place a real, paid PCB order. Gated by |
3D printing (TDP) (requires credentials)
Tool | Description |
| Upload a 3D model (STL/STEP); returns a |
| Analysis result (dimensions/printability) for an uploaded model. |
| Quote price for a 3D-printing job (no order placed). |
| List your 3D-printing orders (paginated/filterable). |
| 3D-printing order details by batch number. |
| Production progress for a 3D-printing order. |
| Place a real, paid 3D-printing order. Gated by |
Order safety: the two
*_create_ordertools place real, paid orders and are disabled by default. They only work whenJLCPCB_ENABLE_ORDERS=trueand credentials are set. Uploads and price quotes are free and need only credentials.
Installation
The server runs over stdio and is launched by your MCP client.
Claude Desktop / generic MCP config
{
"mcpServers": {
"jlcpcb": {
"command": "npx",
"args": ["-y", "jlcpcb-mcp"]
}
}
}Claude Code
claude mcp add jlcpcb -- npx -y jlcpcb-mcpInstall globally
npm install -g jlcpcb-mcp
jlcpcb-mcp # runs the stdio serverFirst run builds the local catalog database (one-time, a few minutes). Subsequent queries are instant. Use the
jlcpcb_refresh_databasetool to update the catalog later.
Configuration
All configuration is optional — the live API needs no credentials.
Env var | Purpose |
| Override where the catalog SQLite file is stored. |
| Store the database in |
| Official Open API credentials — enable the |
| Override the official API base (default |
| Set to |
Default database locations:
Windows:
%LOCALAPPDATA%\jlcpcb-mcp\components.sqlitemacOS:
~/Library/Application Support/jlcpcb-mcp/components.sqliteLinux:
~/.local/share/jlcpcb-mcp/components.sqlite
Development
npm install
npm run build # tsc -> dist/
npm test # vitest (mocks network + DB; no large download)
npm run test:watch
npm run dev # ts-node src/index.tsThe test suite mocks the live API and the catalog download, so it runs fast and offline.
Architecture
src/
index.ts # registers all tools on the MCP server (stdio)
tool.ts # shared ToolDef type
live-client.ts # wmsc.lcsc.com live product API client
official-client.ts# open.jlcpcb.com authenticated API (HMAC-SHA256 signing)
database.ts # DatabaseManager: build/verify/query the catalog (better-sqlite3)
paths.ts # platform data-dir resolution
value-parser.ts # resistance/capacitance/voltage/current/power parsers
tools/
search.ts # jlcpcb_search_components
details.ts # get_component_details / _stock / _pricing / _datasheet
catalog.ts # jlcpcb_list_categories
maintenance.ts # jlcpcb_database_status / jlcpcb_refresh_database
official.ts # jlcpcb_official_* (authenticated Parts API)
pcb.ts # jlcpcb_pcb_* (PCB/SMT-stencil quote, upload, order)
tdp.ts # jlcpcb_tdp_* (3D-printing quote, upload, order)Releasing
CI runs the build + tests on every push and PR to main (Node 20 & 22). Publishing is
triggered by creating a GitHub Release, which publishes to both registries:
npm as the unscoped package
jlcpcb-mcpGitHub Packages as
@eyalm321/jlcpcb-mcp
One-time repo setup
Push this repo to
https://github.com/Eyalm321/jlcpcb-mcp.Add an
NPM_TOKENrepository secret (an npm automation token).GITHUB_TOKENis provided automatically for GitHub Packages.To release: bump the version in
package.json, commit, then create a GitHub Release (tag e.g.v0.1.0). Thepublishworkflow builds, tests, and publishes to both registries.
Credits
Catalog data: yaqwsx/jlcparts
Architecture inspired by peterb154/jlcpcb-search-mcp
Catalog facts originate from JLCPCB / LCSC and are subject to their terms.
License
MIT © Eyalm321
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/Eyalm321/jlcpcb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server