io.github.eansearch/eansearch-mcp-server
MCP server for real-time product search by barcode (EAN, UPC, GTIN) or keyword on ean-search.org
Open source Repository Open in the app JSON README (API)
About
MCP server for real-time product search by barcode (EAN, UPC, GTIN) or keyword on ean-search.org
Details
- Kind
- MCP servers
- Topic
- No topic detected
- Publisher
- eansearch
- Origin
- official
- Category
- ferramentas
- Transport
- http
- Version
- 0.1.0
- Stars
- 2
- Forks
- 1
- Last push
- 2026-01-15T15:08:04Z
- Repository state
- ativo
- Language
- Python
- License
- MIT
- Added
- 2026-08-29 03:02:44
- Updated
- 2026-08-29 03:02:44
- Origin id
io.github.eansearch/eansearch-mcp-server
README
# A MCP server for EAN-Search.org
This official MCP server allows you to access the product database on [EAN-Search.org](https://www.ean-search.org) from your AI toolchain.
This MCP server supports local communication over stdio. If you AI tools already support streamable http,
please use our remote MCP server which is much easier to install. See
https://www.ean-search.org/blog/mcp-server-for-ai.html
mcp-name: io.github.eansearch/eansearch-mcp-server
## Installation
Here is a sample configuration for Claude Desktop (claude_desktop_config.json):
```json
{
"mcpServers": {
"eansearch": {
"command": "c:\\Users\\You\\.local\\bin\\uv.exe",
"args": [
"--directory",
"c:\\PATH\\TO\\eansearch-mcp-server",
"run",
"eansearch-mcp-server.py"
],
"env": {
"EAN_SEARCH_API_TOKEN": "<your API key here>"
}
}
}
}
```