---
name: chip-sourcing-mouser
description: Source parts from Mouser via the native signed-in browser. Keyword + manufacturer-filtered search, MPN + stock + price extraction.
---

# Mouser (mouser.com)

Native browser preferred (intermittent pup blocking + your account pricing). 

## Keyword search
```
https://www.mouser.com/c/?q=<QUERY>
https://www.mouser.com/ProductDetail/<mfr>/<mpn>
```
Results render in a table (`#productTable` / rows with `data-...` and a part-number anchor). Extract:
```js
[...document.querySelectorAll("a[href*='/ProductDetail/']")].map(a=>a.textContent.trim()).filter(Boolean)
```
Stock + price live in the row; signed-in shows your negotiated pricing. Manufacturer facet on the
left narrows to e.g. STMicroelectronics for a clean family list.
