# Use Court Delta with your agent.

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

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

## Use Court Delta 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":"app.courtdelta.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":"app.courtdelta.com","tool":"check_court_scam","input":"{}"}' --json
```

## Registered WebMCP tools

Court Delta publishes 7 tools on app.courtdelta.com; 6 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `check_court_scam` | Check whether a demand for payment supposedly from a North Carolina court — missed jury duty, unpaid court costs, a warrant, a bond — matches known court-impersonation scam patterns. Returns deterministic FINDINGS and a severity (0 low, 1 c | Callable read-only tool |
| `check_expunction_options` | Find which NC expunction statute and AOC petition form fit how each charge on a case ended. With a case number (e.g. 22CR702455-520) it routes against the live case; with no case number it returns the full NC expunction statute table. Routi | Callable read-only tool |
| `check_traffic_charge` | Check whether NC traffic charges from a citation can be waived or require a court appearance, and how to request a reduction — no case number needed. Provide the charge(s) from the paper citation. Read-only. NC only. Not legal advice. | Callable read-only tool |
| `courthouse_info` | Get North Carolina courthouse locations for a county — address, phone, hours, and nearby parking. Provide a county (e.g. 'Wake') or an NC case number (e.g. 26CR031353-910) to derive the county. Read-only. NC only. | Callable read-only tool |
| `estimate_license_points` | Estimate NC driver's-license points under G.S. 20-16(c) for traffic charges, plus any mandatory suspension for excessive speeding — no case number needed. DMV points only, not insurance (SDIP) points. Read-only. NC only. Not legal advice. | Callable read-only tool |
| `lookup_court_case` | Look up a North Carolina court case or traffic citation by case number (e.g. 26CV001234-012) or citation number (e.g. 92403H2). Returns case status, upcoming hearings, and charges. Read-only. NC only. Not legal advice. | Callable read-only tool |
| `subscribe_to_case_updates` | Sign up for email alerts about an NC court case — new hearing dates, changes and dispositions. This SENDS ONE CONFIRMATION EMAIL to the address given. It does not start monitoring: no alerts are sent, and nothing is activated, until the rec | 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 Court Delta changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on app.courtdelta.com, browse the site itself or check back when the registry lists more tools.
