Metadata-Version: 2.4
Name: eansearch-mcp-server
Version: 0.1.0
Summary: A local MCP server for EAN-Search.org
Author-email: Jan Willamowius <info@relaxedcommunications.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/eansearch/eansearch-mcp-server
Project-URL: Issues, https://github.com/eansearch/eansearch-mcp-server/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: eansearch>=1.8.3
Requires-Dist: mcp[cli]>=1.9.3
Requires-Dist: pydantic>=1.0
Dynamic: license-file

# 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>"
      }
    }
  }
}
```

