Metadata-Version: 2.4
Name: mcp-amazon-paapi
Version: 0.4.0
Summary: A Model Context Protocol (MCP) service for Amazon Product Advertising API integration.
Author: JadeMind GmbH 
Maintainer-email: Andreas Katzian <support@jademind.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/jademind/mcp-amazon-paapi
Project-URL: Repository, https://github.com/jademind/mcp-amazon-paapi
Project-URL: Issues, https://github.com/jademind/mcp-amazon-paapi/issues
Keywords: mcp,amazon,affiliate,product advertising
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.28.1
Requires-Dist: mcp[cli]>=1.9.4
Requires-Dist: urllib3>=1.15.1
Requires-Dist: certifi>=14.05.14
Requires-Dist: six>=1.10
Requires-Dist: python-dateutil>=2.5.3

# Amazon PA-API MCP Service

A Model Context Protocol (MCP) service for Amazon Product Advertising API integration. This project
uses the Python SDK officially provided at [Product Advertising API 5.0](https://webservices.amazon.com/paapi5/documentation/).

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mcp-amazon-paapi)
![PyPI - Version](https://img.shields.io/pypi/v/mcp-amazon-paapi)
![PyPI - Downloads](https://img.shields.io/pypi/dm/mcp-amazon-paapi)


## Integration in Claude & Cursor

For configuring host, region and markeplace, consult the [Locale Reference for Product Advertising API](https://webservices.amazon.com/paapi5/documentation/locale-reference.html) documentation.

```json
{
  "mcpServers": {
    "amazon-paapi": {
      "command": "uvx",
      "args": [
        "mcp-amazon-paapi"
      ],
      "env": {
        "PAAPI_ACCESS_KEY": "your-access-key",
        "PAAPI_SECRET_KEY": "your-secret-key",
        "PAAPI_PARTNER_TAG": "your-partner-tag",
        "PAAPI_HOST": "webservices.amazon.de",  // select EU or US servers and region
        "PAAPI_REGION": "eu-west-1",
        "PAAPI_MARKETPLACE": "www.amazon.de" // set your preferred marketplace
      }
    }
  }
}
```

## Project Structure

```
mcp-amazon-paapi/
├── src/
│   └── mcp_amazon_paapi/           # Main package
│       ├── __init__.py             # Package initialization
│       ├── service.py              # Amazon PA-API service class with dependency injection
│       ├── server.py               # FastMCP server implementation
│       └── _vendor/                # Vendored dependencies
│           └── paapi5_python_sdk/  # Amazon PA-API Python SDK
├── test/                           # Test suite
│   ├── __init__.py                 # Test package initialization
│   └── test_service.py             # Tests for service module
├── pyproject.toml                  # Project configuration and dependencies
├── uv.lock                         # Dependency lock file
├── README.md                       # Project documentation
```

## Local Setup

### Initial Setup
```bash
# Sync dependencies from uv.lock (creates virtual environment automatically)
uv sync

# Alternatively, activate the virtual environment manually
source .venv/bin/activate  # Linux/Mac
# or
.venv\Scripts\activate     # Windows
```

## Environment Variables

```bash
export PAAPI_ACCESS_KEY="your-access-key"
export PAAPI_SECRET_KEY="your-secret-key"
export PAAPI_PARTNER_TAG="your-partner-tag"
export PAAPI_HOST="webservices.amazon.de"       # optional defaults to webservices.amazon.de
export PAAPI_REGION="eu-west-1"                 # optional defaults to eu-west-1
export PAAPI_MARKETPLACE="www.amazon.de"        # optional, defaults to www.amazon.de
```

## Testing

Run the simple test suite:

```bash
# Run all tests with uv (recommended)
uv run python -m pytest test/test_service.py -v

# Or if you have activated the virtual environment
pytest test/test_service.py -v
```

The test suite includes:
- Service initialization tests
- Configuration management tests  
- Search functionality tests with mocking
- Error handling tests

## Usage

```python
from service import AmazonPAAPIService

# Create service (uses environment variables)
service = AmazonPAAPIService()

# Search for items
items = service.search_items("echo dot", "Electronics", 5)
```

## Running the MCP Server

```bash
# Run directly with uv (recommended)
uv run python server.py

# Or if you have activated the virtual environment
python server.py
```
