# Use plori with your agent.

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

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

## Use plori 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":"plori.ai"}' --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":"plori.ai","tool":"plori_get_capabilities","input":"{}"}' --json
```

## Registered WebMCP tools

plori publishes 9 tools on plori.ai; 6 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `plori_create_agent` | Create a plori agent by name, or return the existing agent with that name. | Listed for discovery; the registry allows read-only calls only |
| `plori_get_capabilities` | Describe what plori offers and where an external agent can connect for the complete tool set. | Callable read-only tool |
| `plori_get_credits` | Get this account's current credit balance, audience, and active plan. | Callable read-only tool |
| `plori_get_mcp_connection` | Return the canonical remote MCP endpoint, authentication discovery URL, and next steps for connecting an external agent. | Callable read-only tool |
| `plori_list_agents` | List this account's plori agents and the page URL for each one. | Callable read-only tool |
| `plori_list_examples` | List public examples and their evidence labels so an agent can choose a concrete plori task. | Callable read-only tool |
| `plori_open_agent` | Open one of this account's agents in the current browser tab. | Callable read-only tool |
| `plori_open_mcp_guide` | Open plori's public guide for connecting an external agent to its remote MCP server. | Listed for discovery; the registry allows read-only calls only |
| `plori_open_page` | Navigate this tab to the public MCP connection guide or examples. Navigation removes the homepage tools. | 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 plori changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on plori.ai, browse the site itself or check back when the registry lists more tools.
