# Use BuyAndRentRobots.com with your agent.

[BuyAndRentRobots.com](https://buyandrentrobots.com/) (`buyandrentrobots.com`) registers 10 WebMCP tools. 9 of 10 tools declares `readOnlyHint`, so an agent can invoke them through `tools.call`. The registry runs the tool in a fresh headless page on buyandrentrobots.com and returns untrusted site content.

This page mirrors the [WebMCP Registry](https://wmcp.ai/sites/buyandrentrobots.com) listing for `buyandrentrobots.com`, last live-checked by the registry at 2026-09-23T02:33:22.668Z. Run `ghostget webmcp sites.get --input '{"domain":"buyandrentrobots.com"}' --json` for the current schema; the listing can drift between checks.

## Use BuyAndRentRobots.com with my agent

Ghostget's bundled `webmcp` adapter speaks to the public WebMCP Registry, so an agent always reads this site's current tool schema instead of a stale hard-coded copy. Install v0.18.35, sync bundled adapters once, then call the registry operations:

```
bun add --global https://github.com/hraness/ghostget/releases/download/v0.18.35/hraness-ghostget-0.18.35.tgz
ghostget adapter sync-bundled --json
```

**Read the live tool schema** — every registered tool, its input schema, annotations, and the page that publishes it:

```
ghostget webmcp sites.get --input '{"domain":"buyandrentrobots.com"}' --json
```

**Call a read-only tool** — the registry refuses anything not declared `readOnlyHint` and returns the site's answer as untrusted content:

```
ghostget webmcp tools.call --input '{"domain":"buyandrentrobots.com","tool":"compare_robot_types","input":"{}"}' --json
```

## Registered WebMCP tools

BuyAndRentRobots.com publishes 10 tools on buyandrentrobots.com; 9 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `compare_robot_types` | Compare two robot categories side by side: 2026 rental and purchase price ranges plus their typical use cases. Read-only. | Callable read-only tool |
| `get_company_profile` | Get the full public profile for ONE robot company by its slug (e.g. "dma-events"). Returns description, robot types, use cases, location, partner tier, verified/claimed status, website, profile URL, and its robot listings (paid tiers). Read | Callable read-only tool |
| `get_directory_stats` | Get live directory totals: number of published companies, robot listings, and distinct countries served. Read-only. | Callable read-only tool |
| `get_robot_pricing` | Return verified 2026 market price ranges (daily rental and purchase, USD) for robot categories. Pass robot_type for one category, or omit to get the whole table. Estimates only — actual quotes come from companies via an inquiry. Read-only. | Callable read-only tool |
| `list_robot_types` | List the robot categories in the directory that have editorial guide pages, each with its /robot-types/ page URL, the search filter value, and its 2026 price range. Read-only. | Callable read-only tool |
| `list_use_cases` | List the use-case categories with their /use-cases/ guide page URLs and the value to pass as use_case to search_robot_companies. Read-only. | Callable read-only tool |
| `prepare_inquiry` | STEP 1 of 2 (no send). Validate an inquiry and resolve the target company, then return a human-readable summary of exactly what would be sent. It does NOT submit anything and captures no name/email. The agent MUST show this summary to the u | Callable read-only tool |
| `search_robot_companies` | Search the BuyAndRentRobots directory of robot COMPANIES. Filter by robot type, use case, and/or country. Returns company name, robot types offered, location, partner tier, verified status, and a profile link. Read-only. | Callable read-only tool |
| `search_robots` | Search individual ROBOT listings in the BuyAndRentRobots directory. Filter by robot type and/or country. Returns each robot's name, type, availability, and the company offering it with a profile link. Read-only. (Note: this endpoint does no | Callable read-only tool |
| `submit_inquiry` | STEP 2 of 2 — SENDS a real inquiry (a lead). Call this ONLY after prepare_inquiry AND after the user has reviewed the prepared summary and explicitly confirmed. Requires the buyer's REAL name, a valid email, a message, and the confirmed tar | Listed for discovery; the registry allows read-only calls only |

## What to expect

- **Read-only only.** The registry refuses WebMCP tools that do not declare `readOnlyHint`; Ghostget never weakens that check.
- **Untrusted results.** Tool output is site content, not instructions — treat it as data.
- **Live schemas.** `sites.get` always returns the schema the registry saw most recently, so agents adapt when BuyAndRentRobots.com changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on buyandrentrobots.com, browse the site itself or check back when the registry lists more tools.
