Skip to main content
Glama
xiaobenyang-com

Airbnb-Search

README.md
# Airbnb搜索扩展 Airbnb Search

一个提供高级筛选功能和详细房源信息的Airbnb搜索桌面扩展,适用于旅行规划和房源研究。
An Airbnb search desktop extension that offers advanced filtering features and detailed listing information, suitable for travel planning and listing research.## 工具列表 Tool List

本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。

| 工具 Tool   | 描述 Description         |
|-------|--------------------|
| airbnb_search | Search for Airbnb listings with various filters and pagination. Provide direct links to the user |
| airbnb_listing_details | Get detailed information about a specific Airbnb listing. Provide direct links to the user |


## 检查服务 ## Inspector

工具在线测试: [https://mcp.xiaobenyang.com/inspector/1777316659557379](https://mcp.xiaobenyang.com/inspector/1777316659557379)

Online Tool test [https://mcp.xiaobenyang.com/inspector/1777316659557379](https://mcp.xiaobenyang.com/inspector/1777316659557379)

## 服务配置 MCP Server Config


> #### 如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?
> 访问小笨羊科技网站 [https://xiaobenyang.com](https://xiaobenyang.com),注册用户即可获得APIKEY
> Visit XiaoBenYang website [https://xiaobenyang.com](https://xiaobenyang.com), register and get the APIKEY.

### SSE
```json
{
  "mcpServers": {
    "Airbnb搜索扩展": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777316659557379/sse"
    }
  }
}
```
### STREAMABLE HTTP
```json
{
  "mcpServers": {
    "Airbnb搜索扩展": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777316659557379/mcp"
    }
  }
}
```
### STDIO
```json
{
    "mcpServers": {
        "Airbnb搜索扩展": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777316659557379",
          },
          "transport": "stdio"
        }
      }
}

```

TDQS

B3/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: one retrieves details for a specific listing, while the other searches across multiple listings with filters. There is no overlap in functionality, making it easy for an agent to choose the right tool based on whether it needs specific data or a broader search.

Naming Consistency5/5

Both tools follow a consistent naming pattern with the prefix 'airbnb_' followed by a descriptive verb_noun combination (listing_details and search). This uniformity enhances readability and predictability, making the tool set easy to navigate.

Tool Count2/5

With only two tools, the server feels under-scoped for an Airbnb search domain. While the tools cover basic search and detail retrieval, there are likely missing operations such as booking, user reviews, or availability checks, which could limit agent effectiveness in handling comprehensive Airbnb-related tasks.

Completeness2/5

The tool set is severely incomplete for an Airbnb domain. It lacks essential operations like booking a listing, checking availability, managing reservations, or accessing user reviews. This creates significant gaps that will likely cause agent failures when trying to perform common Airbnb workflows beyond simple searching and viewing details.