# Use SepticHelp.ca with your agent.

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

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

## Use SepticHelp.ca 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":"septichelp.ca"}' --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":"septichelp.ca","tool":"get_agent_discovery","input":"{}"}' --json
```

## Registered WebMCP tools

SepticHelp.ca publishes 6 tools on septichelp.ca; 2 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `find_contractors` | Open /near-me with directory filters. Use this instead of navigate_to_page for contractor search. service must be a near-me category, not free text. | Listed for discovery; the registry allows read-only calls only |
| `get_agent_discovery` | Return machine-readable discovery endpoints (agent skills index, MCP server card, API catalog, OpenAPI, quote manifest). | Callable read-only tool |
| `list_provinces` | Return Canadian provinces and territories covered by SepticHelp.ca with hub slugs and example city slugs for navigation. | Callable read-only tool |
| `navigate_to_page` | Navigate to a same-origin path such as /blog, /knowledge-base, /vendor/{slug}, or a province hub like /ab/red-deer. Do not use for contractor search — call find_contractors. Do not use for the quote form — call open_quote_form. | Listed for discovery; the registry allows read-only calls only |
| `open_quote_form` | Open the human-friendly multi-step quote form at /quote when the user prefers the website UI or WebMCP submission is not appropriate. | Listed for discovery; the registry allows read-only calls only |
| `submit_septic_quote` | Submit a free septic service quote request after the user has explicitly agreed to share contact and property details with SepticHelp.ca for contractor matching. | 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 SepticHelp.ca changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on septichelp.ca, browse the site itself or check back when the registry lists more tools.
