本文へスキップ
言語 — 現在: 日本語
テーマ — 現在: システムに合わせる
Tool
{
  "name": "searchapi_zillow",
  "description": "Zillow Search results from SearchApi, as structured JSON.",
  "input_schema": {
    "type": "object",
    "properties": {
      "q": {
        "type": "string",
        "description": "Location query, e.g. \"New York, NY\"."
      },
      "search_type": {
        "type": "string",
        "description": "Listing type to search.",
        "enum": [
          "for_sale",
          "for_rent",
          "sold"
        ]
      },
      "price_min": {
        "type": "integer",
        "description": "Minimum price filter."
      },
      "price_max": {
        "type": "integer",
        "description": "Maximum price filter."
      },
      "beds_min": {
        "type": "integer",
        "description": "Minimum bedrooms filter."
      },
      "baths_min": {
        "type": "integer",
        "description": "Minimum bathrooms filter."
      },
      "sort_by": {
        "type": "string",
        "description": "Order of the listings, e.g. relevance, newest, price_high, price_low."
      },
      "page": {
        "type": "integer",
        "description": "Page number of the results.",
        "default": 1
      }
    },
    "required": [
      "q"
    ],
    "examples": [
      {
        "q": "coffee"
      }
    ]
  }
}

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