.claude/skills/manufacturers/mps/SKILL.md
Monolithic Power Systems MPN encoding patterns, suffix decoding, and handler guidance. Use when working with MPS power components or MPSHandler.
npx skillsauth add Cantara/lib-electronic-components mpsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
MPS (Monolithic Power Systems) specializes in high-performance power management solutions. The company is known for:
MPS MPNs follow this general structure:
[PREFIX][SERIES][VARIANT][PACKAGE][-SUFFIX]
| | | | |
| | | | +-- Optional: LF=Lead-free, Z=RoHS, AEC1=Automotive
| | | +-- 2-letter package code (EN, DN, GQ, etc.)
| | +-- Optional variant letter
| +-- 3-4 digit part number
+-- MP, MPQ (automotive), or MPM (module)
| Prefix | Category | Pattern | Description |
|--------|----------|---------|-------------|
| MP1 | Step-Down | MP1xxx | Entry-level DC-DC converters |
| MP2 | Step-Down/LDO | MP2xxx | Buck converters and LDOs |
| MP3 | LED Driver | MP3xxx | LED driver ICs |
| MP4 | High-Current | MP4xxx | High-current step-down converters |
| MP5 | Step-Up/SEPIC | MP5xxx | Boost and SEPIC converters |
| MP6 | Motor Driver | MP6xxx | Stepper/BLDC motor drivers |
| MP7 | Power Switch | MP7xxx | Load switches and eFuses |
| MP8 | Multi-Channel | MP8xxx | PMICs with multiple outputs |
| MP9 | High-Voltage | MP9xxx | High-voltage DC-DC converters |
| MPQ | Automotive | MPQxxxx | AEC-Q100 qualified versions |
| MPM | Module | MPMxxxx | Power modules with inductor |
MP1584EN-LF-Z
| | || | |
| | || | +-- Z = RoHS compliant
| | || +-- LF = Lead-free
| | |+-- EN = SOIC-8E package
| | +-- (no variant letter)
| +-- 1584 = 3A step-down converter
+-- MP = Standard MPS prefix
MPQ4560GQ-AEC1-LF-Z
| | || |
| | || +-- AEC1-LF-Z = Automotive + Lead-free + RoHS
| | |+-- GQ = QFN package
| | +-- (no variant)
| +-- 4560 = 2A step-down converter
+-- MPQ = Automotive-grade prefix
MPM3610GQV-Z
| | | |
| | | +-- Z = RoHS
| | +-- GQV = QFN variant package
| +-- 3610 = 1.2A power module
+-- MPM = Power module prefix
| Code | Package | Notes | |------|---------|-------| | GQ | QFN | Standard QFN | | GL | QFN | QFN variant | | GR | QFN | QFN variant | | GS | QFN-EP | QFN with exposed pad | | GT | QFN | QFN variant | | GU | QFN | QFN variant | | GV | QFN | QFN variant | | GN | QFN | QFN variant |
| Code | Package | Notes | |------|---------|-------| | GF | WLCSP | Ultra-small form factor | | GW | WLCSP | WLCSP variant |
| Code | Package | Notes | |------|---------|-------| | EN | SOIC-8E | Extended SOIC-8 | | DN | SO-8 | Standard SOIC-8 | | EC | SOIC-8 | SOIC-8 variant | | EF | SOIC-8 | SOIC-8 variant | | EG | TSSOP-8 | Thin profile | | EH | TSSOP-16 | 16-pin TSSOP | | EJ | SOP-8 | SOP-8 variant | | EK | MSOP-8 | Mini SOIC-8 | | EL | MSOP-10 | Mini SOIC-10 |
| Code | Package | Notes | |------|---------|-------| | DF | TSOT-23 | Thin SOT-23 | | DG | TSOT-23-5 | 5-pin thin SOT | | DH | SOT-23-8 | 8-pin SOT-23 |
| Code | Package | Notes | |------|---------|-------| | DJ | DFN | Standard DFN | | DK | DFN-10 | 10-pin DFN | | DL | DFN-12 | 12-pin DFN |
| Code | Package | Notes | |------|---------|-------| | MN | QFN-Module | Module with QFN footprint | | MF | Module-BGA | BGA module package |
| Code | Package | Notes | |------|---------|-------| | HF | TO-263 | D2PAK power package | | HN | TO-220 | Through-hole power |
The MPSHandler supports these ComponentTypes:
| MPN Pattern | ComponentType | Description |
|-------------|---------------|-------------|
| MP1xxx, MP2xxx, MP4xxx, MP5xxx, MP7xxx, MP8xxx, MP9xxx | VOLTAGE_REGULATOR | DC-DC converters and regulators |
| MPQxxxx (except 3xxx/6xxx) | VOLTAGE_REGULATOR | Automotive DC-DC converters |
| MPMxxxx | VOLTAGE_REGULATOR | Power modules |
| MP3xxx | LED_DRIVER | LED driver ICs |
| MPQ3xxx | LED_DRIVER | Automotive LED drivers |
| MP6xxx | MOTOR_DRIVER | Motor controller ICs |
| MPQ6xxx | MOTOR_DRIVER | Automotive motor drivers |
| All MPS parts | IC | Base IC type for all parts |
The handler extracts series as follows:
// MPM series: returns "MPM"
"MPM3610GQV-Z" -> "MPM"
// MPQ series: returns "MPQ"
"MPQ4560GQ-AEC1-LF-Z" -> "MPQ"
// Standard MP[1-9]xxx: returns first 3 characters
"MP1584EN-LF-Z" -> "MP1"
"MP2307DN-LF-Z" -> "MP2"
"MP6500HF" -> "MP6"
| Series | Category | |--------|----------| | MP1 | Step-Down Converters | | MP2 | Step-Down/LDO Converters | | MP3 | LED Drivers | | MP4 | High-Current Step-Down | | MP5 | Step-Up/SEPIC Converters | | MP6 | Motor Drivers | | MP7 | Power Switches | | MP8 | Multi-Channel PMIC | | MP9 | High-Voltage Converters | | MPQ | Automotive Grade | | MPM | Power Modules |
The handler extracts package codes with this logic:
-LF-Z, -Z, -LF, -AEC1, etc.MP[A-Z]?[0-9]{3,4}([A-Z]{2}).*// Example extraction:
"MP1584EN-LF-Z"
-> Remove suffix: "MP1584EN"
-> Match: group(1) = "EN"
-> Lookup: PACKAGE_CODES.get("EN") = "SOIC-8E"
"MPQ4560GQ-AEC1-LF-Z"
-> Remove suffix: "MPQ4560GQ"
-> Match: group(1) = "GQ"
-> Lookup: PACKAGE_CODES.get("GQ") = "QFN"
The handler identifies official replacements in two scenarios:
MP1584EN <-> MP1584DN // Same part, different package (SOIC-8E vs SO-8)
MP4560GQ <-> MPQ4560GQ // Consumer vs automotive grade
The isOfficialReplacement() method checks:
MPS uses two indicators for automotive-grade parts:
// Method: isAutomotiveGrade(String mpn)
// 1. MPQ prefix indicates automotive
"MPQ4560GQ-LF-Z" -> true
// 2. -AEC suffix indicates automotive qualification
"MP4560GQ-AEC1-LF-Z" -> true
// Standard consumer parts
"MP4560GQ-LF-Z" -> false
| MPN | Description | Key Specs | |-----|-------------|-----------| | MP1584EN-LF-Z | 3A step-down | 4.5-28V input, SOT-8E | | MP2307DN-LF-Z | 3A step-down | 4.75-23V input, SO-8 | | MP2359DJ-LF-Z | 1.2A step-down | 4.5-24V input, DFN | | MP4560DN-LF-Z | 2A step-down | 4.5-55V input, SO-8 |
| MPN | Description | Key Specs | |-----|-------------|-----------| | MP3302DJ-LF-Z | LED driver | 2.7-6V input, DFN | | MP3394GS-Z | 4-channel LED | QFN-EP |
| MPN | Description | Key Specs | |-----|-------------|-----------| | MP6500HF | Stepper driver | 2.5A, TO-263 | | MP6513GQ-Z | 3-phase BLDC | QFN |
| MPN | Description | Key Specs | |-----|-------------|-----------| | MPM3610GQV-Z | 1.2A module | Integrated inductor | | MPM3833GQV-Z | 3.3A module | Integrated inductor |
The handler uses Set.of() for immutable type set:
public Set<ComponentType> getSupportedTypes() {
return Set.of(
ComponentType.IC,
ComponentType.VOLTAGE_REGULATOR,
ComponentType.LED_DRIVER,
ComponentType.MOTOR_DRIVER
);
}
Patterns are registered for both specific and base types:
// MP3xxx registered for both LED_DRIVER and IC
registry.addPattern(ComponentType.LED_DRIVER, "^MP3[0-9]{3}[A-Z0-9-]*$");
registry.addPattern(ComponentType.IC, "^MP3[0-9]{3}[A-Z0-9-]*$");
The handler overrides matches() for efficient direct pattern checking:
// Direct pattern checks by type for performance
switch (type) {
case VOLTAGE_REGULATOR:
return isVoltageRegulator(upperMpn);
case LED_DRIVER:
return isLEDDriver(upperMpn);
case MOTOR_DRIVER:
return isMotorDriver(upperMpn);
case IC:
return isMPSPart(upperMpn);
}
manufacturers/MPSHandler.javaVOLTAGE_REGULATOR, LED_DRIVER, MOTOR_DRIVER, IChandlers/MPSHandlerTest.java (if exists)-AEC1 suffix. Always check both.-LF-Z and similar suffixes before extraction.VOLTAGE_REGULATOR_MPS. It uses the base types directly.data-ai
Cost-effective task delegation strategy using Haiku model for straightforward work. Use when planning how to approach simple, pattern-following tasks to minimize costs.
tools
Use when working with component similarity calculations - comparing MPNs, finding equivalent parts, implementing new similarity calculators, or understanding how component matching works.
testing
Use when working with transistor similarity calculations - comparing BJT MPNs, understanding NPN/PNP polarity matching, equivalent groups like 2N2222/PN2222, or transistor-specific similarity logic.
testing
Use when working with sensor similarity calculations - comparing temperature/accelerometer/humidity sensor MPNs, understanding sensor families, equivalent parts, or sensor-specific similarity logic.