# search_products

Search published products, vouchers, experiences, memberships and digital goods sold by verified Booyah stores (distinct from search_places, which finds physical businesses). Read-only discovery: returns titles, integer prices in minor units with currency, availability, seller store, related place context when one exists, and a canonical URL to cite. Never creates orders or payments.

Agent View of the PolicyLayer registry record for `search_products`. HTML page: https://policylayer.com/tools/com-getbooyah-booyah-index/search-products

## Facts

- Tool: `search_products`
- Server: Booyah Index (`https://getbooyah.com/api/mcp`) — https://policylayer.com/tools/com-getbooyah-booyah-index.md
- Homepage: https://github.com/https://getbooyah.com/api/mcp
- Risk category: Read (Low risk)
- Registry record: grade C, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 10 (1 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `city` | string | no | City filter (products can also be online-only with no city) |
| `limit` | number | no | Max results, 1-50 (default 10) |
| `query` | string | yes | What to look for, e.g. "google maps playbook", "voucher" |
| `category` | string | no | Category filter, e.g. "monitoring", "seo-service" |
| `currency` | string | no | Currency code, default THB |
| `language` | string | no | Preferred text language (falls back en→any) |
| `place_id` | string | no | Booyah place slug — only products from the store attached to this place |
| `product_type` | string | no | Restrict to one product type |
| `max_price_minor` | integer | no | Maximum price in minor units |
| `min_price_minor` | integer | no | Minimum price in minor units (e.g. 149000 = ฿1,490) |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "search_products",
    "arguments": {
      "query": "<query>"
    }
  }
}
```

## Why search_products is rated Low

Even though search_products only reads data, uncontrolled read access leaks sensitive information and racks up API costs: an agent caught in a retry loop can make thousands of calls a minute without anyone noticing.

Risk signals: High parameter count (10 properties)

## Use case

AI agents call search_products to retrieve information from Booyah Index without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

## Recommended policy (PolicyLayer)

Verdict: **Allowed**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Booyah Index:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "search_products": {}
  }
}
```

## Other tools on Booyah Index (5)

- `get_place` — Read — https://policylayer.com/tools/com-getbooyah-booyah-index/get-place.md
- `get_product` — Read — https://policylayer.com/tools/com-getbooyah-booyah-index/get-product.md
- `get_store` — Read — https://policylayer.com/tools/com-getbooyah-booyah-index/get-store.md
- `list_cities` — Read — https://policylayer.com/tools/com-getbooyah-booyah-index/list-cities.md
- `search_places` — Read — https://policylayer.com/tools/com-getbooyah-booyah-index/search-places.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-getbooyah-booyah-index · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-getbooyah-booyah-index
