# Use Beckmann with your agent.

[Beckmann](https://beckmann.ai/) (`beckmann.ai`) registers 9 WebMCP tools. 5 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 beckmann.ai and returns untrusted site content.

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

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

## Registered WebMCP tools

Beckmann publishes 9 tools on beckmann.ai; 5 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `askBlogQuestion` | Stellt eine Frage an die Inhalte von Beckmann und erhält eine kurze, quellenbasierte Antwort (RAG) mit Artikel-Links. | Callable read-only tool |
| `getCurrentPage` | Liest die aktuell geöffnete Seite von beckmann.ai aus: Titel, Beschreibung, Sprache, kanonische URL und – auf Artikelseiten – den Artikeltext. | Callable read-only tool |
| `getPostContent` | Liefert den Volltext eines Beckmann-Beitrags als Klartext (Eingabe: die Artikel-URL, z. B. aus searchPosts oder listLatestPosts). | Callable read-only tool |
| `listLatestPosts` | Listet die neuesten Beiträge von Beckmann (Titel, URL, Datum, Ressort, Zusammenfassung). | Callable read-only tool |
| `openPage` | Navigiert im Browser zu einer Seite auf beckmann.ai (nur interne Pfade oder beckmann.ai-URLs). | Listed for discovery; the registry allows read-only calls only |
| `requestConsultation` | Sendet eine Beratungs-/Kontaktanfrage an Brian Beckmann (beckmann.ai) – z. B. zu KI-Agenten, GEO/SEO, Automatisierung oder MCP. Die Anfrage wird gespeichert; Antwort kommt per E-Mail, üblicherweise innerhalb von 1–2 Werktagen. | Listed for discovery; the registry allows read-only calls only |
| `searchBlogPosts` | Durchsucht das KI-Fachmagazin Beckmann (Volltextsuche über den lokalen Pagefind-Index; alternativ liefert die toolaction-URL semantische RAG-Treffer als JSON). Menschliche Nutzer öffnen beim Absenden den besten Treffer; Agent-Submits zeigen | Listed for discovery; the registry allows read-only calls only |
| `searchPosts` | Semantische Suche über alle Beiträge des KI-Fachmagazins Beckmann (DE/EN). Liefert passende Artikel mit Titel, URL und Snippet. | Callable read-only tool |
| `switchLanguage` | Wechselt zur englischen Version der aktuellen Seite. | 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 Beckmann changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on beckmann.ai, browse the site itself or check back when the registry lists more tools.
