本文へスキップ
言語 — 現在: 日本語
テーマ — 現在: システムに合わせる
Tool
{
  "name": "searchapi_ebay_product",
  "description": "eBay Product results from SearchApi, as structured JSON.",
  "input_schema": {
    "type": "object",
    "properties": {
      "item_id": {
        "type": "string",
        "description": "eBay item identifier of the listing."
      },
      "ebay_domain": {
        "type": "string",
        "description": "eBay marketplace domain to query.",
        "default": "ebay.com"
      }
    },
    "required": [
      "item_id"
    ],
    "examples": [
      {
        "item_id": "sample_ebay_product_item_id"
      }
    ]
  }
}

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