# Use Draft & Goal with your agent.

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

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

## Use Draft & Goal 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":"dng.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":"dng.ai","tool":"list_articles","input":"{}"}' --json
```

## Registered WebMCP tools

Draft & Goal publishes 8 tools on dng.ai; 3 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `book_demo` | Open the Draft & Goal demo booking form. | Listed for discovery; the registry allows read-only calls only |
| `list_articles` | List the structured articles, case studies, and content cards visible on this page. | Callable read-only tool |
| `log_in` | Open Draft & Goal Studio in this tab to log in or continue an authenticated session. | Listed for discovery; the registry allows read-only calls only |
| `navigate_to` | Navigate this browser tab to a path on dng.ai. | Listed for discovery; the registry allows read-only calls only |
| `open_cookie_preferences` | Open the CookieYes privacy preference panel without changing any consent choice. | Callable read-only tool |
| `save_cookie_preferences` | Save an explicit CookieYes consent choice. Necessary cookies remain enabled. This changes browser privacy preferences. | Listed for discovery; the registry allows read-only calls only |
| `search_site` | Search Draft & Goal's static site index and return matching pages. | Callable read-only tool |
| `subscribe_newsletter` | Complete and submit the newsletter popup form on Draft & Goal. Existing validation, consent and CAPTCHA controls still apply. | 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 Draft & Goal changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on dng.ai, browse the site itself or check back when the registry lists more tools.
