No install? Use cloud.anythingmcp.com directly.
Sign in, install the BigCommerce in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → BigCommerce をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
BigCommerce + Claude
Drive BigCommerce (SaaS e-commerce platform) from any AI agent: products, variants, orders, customers, categories. 14 tools, API-key (X-Auth-Token) auth, per-store base URL.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
BIGCOMMERCE_STORE_HASH, BIGCOMMERCE_ACCESS_TOKEN
ステップ 1 — 認証情報を取得
bigcommerce.com/docs/rest-catalog).
Setup:
- Sign in to BigCommerce → Settings → API → API Accounts → Create API Account → V2/V3 API token.
- Pick scopes — at minimum: Products (Read+Write), Orders (Read+Write), Customers (Read+Write), Information & Settings (Read).
- Copy the Access Token and note the API path — looks like
https://api.bigcommerce.com/stores/{STORE_HASH}/v3/. - Set:
BIGCOMMERCE_STORE_HASH= the alphanumeric store hash from the URL (e.g.abcd1234)BIGCOMMERCE_ACCESS_TOKEN= the access token
Authentication: header X-Auth-Token: ${BIGCOMMERCE_ACCESS_TOKEN}. The base URL embeds the store hash.
…(continued in the in-app connector instructions)
ステップ 2 — アダプターをインストール
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
ステップ 3 — Claude にコネクタを追加
推奨ルート — 設定ファイルを触らずに claude.ai web で動作します。
- claude.ai/customize/connectors を開きます。
- "Add custom connector" をクリック。
- 入力:
- Name:
BigCommerce - URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → MCP API キーを貼り付け (AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Connect をクリックして認可。
下記のすべてのツールがチャットに表示されます — プロンプトを入力し始めてください。
利用可能なツール
| Tool | What it does |
|---|---|
bigcommerce_list_products | List products with filters |
bigcommerce_get_product | Fetch a single product |
bigcommerce_create_product | Create a product |
bigcommerce_update_product | Update a product |
bigcommerce_delete_product | Permanently delete a product |
bigcommerce_list_product_variants | List variants (SKUs) for a product |
bigcommerce_update_variant_inventory | Update a variant's inventory_level (stock quantity) |
bigcommerce_list_categories | List categories with parent/tree structure |
bigcommerce_list_orders | List orders (uses v2 endpoint — V3 doesn't fully cover orders yet) |
bigcommerce_get_order | Fetch one order (v2) |
bigcommerce_get_order_products | List line items on an order |
bigcommerce_update_order_status | Update an order's status (use status code from instructions) |
bigcommerce_list_customers | List customers (V3) |
bigcommerce_create_customer | Create a customer |
FAQ
Claude Code は Claude Desktop と同じように動作しますか? はい — 両方を https://cloud.anythingmcp.com/mcp に向けてください。