本文へスキップ
言語 — 現在: 日本語
テーマ — 現在: システムに合わせる
Tool
{
  "name": "searchapi_amazon_product",
  "description": "Amazon Product results from SearchApi, as structured JSON.",
  "input_schema": {
    "type": "object",
    "properties": {
      "asin": {
        "type": "string",
        "description": "Amazon Standard Identification Number of the product."
      },
      "amazon_domain": {
        "type": "string",
        "description": "Amazon marketplace domain to query.",
        "default": "amazon.com"
      }
    },
    "required": [
      "asin"
    ],
    "examples": [
      {
        "asin": "sample_amazon_product_asin"
      }
    ]
  }
}

この定義を自分のエージェントのツール配列に貼り付けてください。スキーマはこのエンジンのカタログ登録内容から生成され、設定した値はスキーマの examples に入ります。名前は MCP サーバーのものではなく私たちが決めたもので — あなたのエージェントが呼び出す名前です — どのエンジンも searchapi_ を接頭辞に持ちます。