- Home
- MCP servers
- EAN-Search
EAN-Search
- other
2
GitHub Stars
other
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"eansearch-eansearch-mcp-server": {
"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>"
}
}
}
}You can access the EAN-Search.org product database from your AI tools using this MCP server. It enables local communication via stdio, letting your tools request product data through a straightforward, scriptable interface.
How to use
To use the MCP server, configure your MCP client to connect to the local stdio server and supply your API token. The server is designed for AI toolchains that need fast, programmatic access to EAN-Search data.
How to install
Prerequisites: ensure you have a compatible MCP client that supports local stdio MCPs, and have an API key for EAN-Search.org if required by the server. Prepare your environment to run the provided command and to reference the API token.
Follow these steps to install and run the MCP server locally using the included configuration example.
{
"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>"
}
}
}
}
Additional content
This MCP server configuration demonstrates a local, stdio-based setup. You provide a command to launch the MCP host, a list of arguments to pass to that host, and any required environment variables. In this example, you run the MCP server via a Windows-style path to the uv executable and supply the working directory and script to run, along with the API token for authentication.