Mouser Electronics Server
БесплатноНе проверенA Model Context Protocol (MCP) server for the Mouser Electronics API. Enables searching electronic components, managing shopping carts, and tracking orders dire
Описание
A Model Context Protocol (MCP) server for the Mouser Electronics API. Enables searching electronic components, managing shopping carts, and tracking orders directly through Claude or other MCP clients.
README
A Model Context Protocol (MCP) server for the Mouser Electronics API. Search for electronic components, manage shopping carts, and track orders directly through Claude or other MCP clients.
Features
- Part Search: Find components by keyword or exact part number
- Component Details: Access specifications, pricing, availability, and datasheets
- Cart Management: Add items to cart and update quantities
- Order Tracking: View order details and history
- Pricing Information: Get quantity-based pricing with up to 4 price breaks
- Real-time Availability: Check stock levels and lead times
Quick Start
Prerequisites
- Python 3.10 or higher
- uv package manager (recommended)
- Mouser Electronics API keys (free at mouser.com/api-hub)
Installation
- Clone this repository:
git clone <this-repo> mouser-mcp
cd mouser-mcp
- Install dependencies:
uv sync
- Create your environment file:
cp .env.example .env
# Edit .env with your Mouser API keys
You'll need two separate API keys from Mouser:
- Part Search API Key: For searching components
- Order/Cart API Key: For cart and order operations
Get both keys at: https://www.mouser.com/api-hub/
- Run the server:
uv run mouser-mcp
Project Structure
mouser-mcp/
├── src/mouser_mcp/
│ ├── __init__.py # Package initialization
│ ├── server.py # Main MCP server entry point
│ ├── client.py # Mouser API client
│ ├── types.py # TypedDict definitions
│ ├── api/ # API modules
│ │ ├── search.py # Search operations
│ │ ├── cart.py # Cart management
│ │ ├── order.py # Order operations
│ │ └── order_history.py # Order history
│ └── utils/ # Utility modules
├── tests/ # Test suite
├── .env.example # Environment template
└── README.md # This file
Available Tools
| Tool | Description |
|---|---|
search_by_keyword |
Search parts by keyword (e.g., "resistor 10k", "STM32F4") |
search_by_part_number |
Search by exact part number (e.g., "595-TPS54360DDAR") |
get_cart |
Retrieve cart contents by cart key |
add_to_cart |
Add item to shopping cart |
update_cart_item |
Update item quantity in cart |
get_order_options |
Get shipping/payment options for a cart |
get_order |
Retrieve order details by order number |
list_order_history |
View past orders (default: last 30 days) |
health_check |
Check server status and API configuration |
Environment Variables
| Variable | Description | Default |
|---|---|---|
MOUSER_PART_API_KEY |
API key for part search | (required) |
MOUSER_ORDER_API_KEY |
API key for cart/orders | (required) |
MOUSER_API_BASE_URL |
Base URL for Mouser API | https://api.mouser.com/api/v1 |
MOUSER_API_TIMEOUT |
Request timeout in seconds | 30 |
MOUSER_DEBUG |
Enable debug logging | false |
Claude Desktop Integration
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"mouser": {
"command": "uv",
"args": ["--directory", "/path/to/mouser-mcp", "run", "mouser-mcp"]
}
}
}
Or with Docker:
{
"mcpServers": {
"mouser": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--env-file",
"/path/to/mouser-mcp/.env",
"mouser-mcp:latest"
]
}
}
}
Development
Running Tests
# Run all tests (unit tests only, no API keys needed)
uv run python -m pytest -v
# Run integration tests (requires real Mouser API keys)
uv run python -m pytest tests/test_search_integration.py -v -s
# Run specific test
uv run python -m pytest tests/test_search_integration.py::test_search_arduino_boards_integration -v -s
Linting
uv run ruff check src/ tests/
uv run ruff format src/ tests/
Building
uv build
Troubleshooting
"Invalid unique identifier" Error
Problem: When searching for parts, you get:
{
"Errors": [{
"Code": "Invalid",
"Message": "Invalid unique identifier.",
"PropertyName": "API Key"
}]
}
Solution: The API keys in your .env file are placeholders. You need to:
- Get real API keys from Mouser API Hub
- Update your
.envfile with the actual keys
See API_KEY_SETUP.md for detailed instructions.
Rate Limit Errors
If you see rate limit errors, wait at least 1 minute before retrying. Consider implementing:
- Request throttling in your application
- Caching of search results
- Batch operations where possible
Empty Search Results
If searches return no results:
- Verify the part exists on mouser.com
- Try broader search terms
- Check for typos in part numbers
For more troubleshooting help, see INVESTIGATION_SUMMARY.md
Docker Deployment
Build and run with Docker Compose:
docker compose up --build
For development with VS Code Dev Containers:
- Open the project in VS Code
- Install the "Dev Containers" extension
- Click "Reopen in Container" when prompted
API Rate Limits
Mouser API has the following limits:
- 50 results maximum per search request
- 30 requests per minute
- 1000 requests per day
The server will raise errors if you exceed these limits.
Example Usage
Once integrated with Claude Desktop, you can ask:
- "Search for STM32F407 microcontrollers on Mouser"
- "Find 10k ohm resistors with 1% tolerance"
- "What's the price and availability for part number 595-TPS54360DDAR?"
- "Show me my recent Mouser orders"
License
MIT License - See LICENSE file for details.
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Run tests and linting
- Submit a pull request
Resources
Установка Mouser Electronics Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/nickweedon/mouser-mcp-dockerFAQ
Mouser Electronics Server MCP бесплатный?
Да, Mouser Electronics Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Mouser Electronics Server?
Нет, Mouser Electronics Server работает без API-ключей и переменных окружения.
Mouser Electronics Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Mouser Electronics Server в Claude Desktop, Claude Code или Cursor?
Открой Mouser Electronics Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Mouser Electronics Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
