No install? Use cloud.anythingmcp.com directly.
Sign in, install the Adyen 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 → Adyen をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
Adyen + Claude
Drive Adyen (global payment processor) checkout + payments + balance platform from any AI agent. 10 tools, API-key auth, separate live and test environments.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
ADYEN_API_KEY, ADYEN_MERCHANT_ACCOUNT
ステップ 1 — 認証情報を取得
adyen.com).
Setup:
- Sign in to https://ca-test.adyen.com (test) or https://ca-live.adyen.com (live) → Developers → API credentials → New credential → API user.
- Generate the API key. Note your merchant account name (visible in top dropdown, e.g.
AcmeCo). - Set:
ADYEN_API_KEY= the API keyADYEN_MERCHANT_ACCOUNT= the merchant account nameADYEN_ENV=testorlive- For LIVE only: also set
ADYEN_LIVE_URL_PREFIX= the URL prefix Adyen issued you (something likeabc123def-AcmeCo). Find in CA → Developers → API URLs.
Authentication: header X-API-Key: ${ADYEN_API_KEY}.
…(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:
Adyen - URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → MCP API キーを貼り付け (AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Connect をクリックして認可。
下記のすべてのツールがチャットに表示されます — プロンプトを入力し始めてください。
利用可能なツール
| Tool | What it does |
|---|---|
adyen_payment_methods | List available payment methods for a given currency / country / amount |
adyen_create_payment | Create a payment |
adyen_payments_details | Finalize a payment with the action result (3DS challenge result, redirect result, etc |
adyen_payments_capture | Capture an authorised payment (manual-capture flow) |
adyen_payments_refund | Refund a captured payment |
adyen_payments_cancel | Cancel an authorisation that hasn't been captured yet |
adyen_payments_reversal | Reverse an authorisation (handles capture + refund as one atomic op if needed) |
adyen_sessions_create | Create a payment session (used by Drop-in v5+) |
adyen_session_get_result | Get the result of a session (after the shopper has completed payment in Drop-in) |
adyen_origin_keys | Get origin keys for web-Drop-in (deprecated since 2023 in favor of clientKey — included for legacy integrations) |
FAQ
Claude Code は Claude Desktop と同じように動作しますか? はい — 両方を https://cloud.anythingmcp.com/mcp に向けてください。