MCP.so
登录
A

Amazon Product Advertising

@jademind

关于 Amazon Product Advertising

A lightweight Python MCP server that exposes Amazon Product Advertising API 5.0 keyword search and ASIN lookup—returning products with your Associate partner-tagged URLs.

基本信息

分类

云与基础设施

传输方式

stdio

发布者

jademind

提交者

Andreas Katzian

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "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",
        "PAAPI_REGION": "eu-west-1",
        "PAAPI_MARKETPLACE": "www.amazon.de"
      }
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Amazon Product Advertising?

Amazon Product Advertising is a Model Context Protocol (MCP) service that integrates the Amazon Product Advertising API (PAAPI 5.0) into MCP-compatible applications like Claude and Cursor. It provides an official Python SDK to search and retrieve Amazon product data using environment-based authentication and locale configuration.

How to use Amazon Product Advertising?

Install the server via uvx mcp-amazon-paapi and configure it in your MCP client’s JSON settings with the required environment variables (PAAPI_ACCESS_KEY, PAAPI_SECRET_KEY, PAAPI_PARTNER_TAG) and optional locale settings (PAAPI_HOST, PAAPI_REGION, PAAPI_MARKETPLACE). Locally, run uv sync to set up dependencies, then start the server with uv run python server.py.

Key features of Amazon Product Advertising

  • Search for Amazon items by keyword and category
  • Configurable host, region, and marketplace locale
  • Dependency‑injected service layer for testability
  • Bundled vendored PAAPI 5.0 Python SDK
  • Test suite with mocking for service and error handling

Use cases of Amazon Product Advertising

  • Searching Amazon products from within an AI assistant
  • Building a product lookup tool for e‑commerce data
  • Integrating Amazon catalog data into MCP‑enabled applications

FAQ from Amazon Product Advertising

What is the Amazon Product Advertising API?

It is Amazon’s official API (PAAPI 5.0) for programmatically accessing product data such as titles, prices, and categories. This MCP server wraps that API into a simple MCP tool.

How do I configure the correct region and marketplace?

Set the PAAPI_HOST, PAAPI_REGION, and PAAPI_MARKETPLACE environment variables. Refer to the Locale Reference for available values. Defaults are webservices.amazon.de, eu-west-1, and www.amazon.de.

What environment variables are required?

You must provide PAAPI_ACCESS_KEY, PAAPI_SECRET_KEY, and PAAPI_PARTNER_TAG. The host, region, and marketplace variables are optional and default to EU‑based values.

Can I run the server without uvx?

Yes. Clone the repository, run uv sync to install dependencies, then start the server with uv run python server.py or directly with Python after activating the virtual environment.

How are errors handled?

The test suite includes error handling tests, and the service uses the PAAPI SDK’s built‑in exception handling for invalid credentials, missing parameters, and network issues.

评论

云与基础设施 分类下的更多 MCP 服务器