Metadata-Version: 2.4
Name: findgoods-mcp-server
Version: 0.1.0
Summary: MCP Server for Japanese anime merchandise wholesale — powered by GoodsMart
Project-URL: Homepage, https://findgoods.ai
Project-URL: Repository, https://github.com/findgoods-ai/findgoods-mcp-server
License: MIT
Keywords: anime,b2b,japan,mcp,wholesale
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Requires-Dist: click>=8.1.0
Requires-Dist: fastmcp>=2.0.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic-settings>=2.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dotenv>=1.0.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.24.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# FindGoods MCP Server

MCP Server for Japanese anime merchandise wholesale, powered by [GoodsMart](https://findgoods.ai).

Exposes 53 tools covering the full GoodsMart Shop API — search products, manage cart, place orders, track shipments, and more.

## Installation

```bash
pip install findgoods-mcp-server
```

## Usage

### As MCP Server (for AI clients like Claude Desktop)

Add to your MCP client config:

```json
{
  "mcpServers": {
    "findgoods": {
      "command": "python",
      "args": ["-m", "findgoods_mcp"],
      "env": {
        "WHOLESALE_SHOP_API_URL": "https://api.wholesale.goodsmart.jp"
      }
    }
  }
}
```

### As CLI (token-efficient, for AI agents like Claude Code)

```bash
findgoods login --email user@example.com --password xxx
findgoods search-products --keyword "フィギュア"
findgoods add-to-cart --goods-id "xxx" --quantity 6
findgoods create-order --payment-method bank
findgoods --help
```

## Configuration

Set the API endpoint via environment variable or `.env` file:

```
WHOLESALE_SHOP_API_URL=https://api.wholesale.goodsmart.jp
```

## License

MIT
