# Use Superbee documentation with your agent.

[Superbee documentation](https://docs.getsuperbee.com/) (`docs.getsuperbee.com`) registers 7 WebMCP tools. 7 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 docs.getsuperbee.com and returns untrusted site content.

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

## Use Superbee documentation 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":"docs.getsuperbee.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":"docs.getsuperbee.com","tool":"superbee_describe_bundle","input":"{}"}' --json
```

## Registered WebMCP tools

Superbee documentation publishes 7 tools on docs.getsuperbee.com; 7 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `superbee_describe_bundle` | Describe this published Superbee Portal artifact: artifact and snapshot identity, audience, exposure, record counts, available document scopes, presentation identity, adapter capabilities, and the search algorithm version. Read-only. | Callable read-only tool |
| `superbee_get_document` | Read one document by id: identity, selected metadata with explicit tag-collection completeness, a bounded UTF-8 body slice with its continuation offset, relationship counts, and the validated raw path. Read-only. | Callable read-only tool |
| `superbee_get_relationships` | List outgoing, incoming, or both-direction canonical relationship rows for one document, with returned and total page counts. Read-only. | Callable read-only tool |
| `superbee_list_document_facets` | List bounded, paginated exact type or tag filter values with document counts and returned and total page counts. Facets can cover the complete publication or the reader-facing presented scope. Presented scope follows the client presentation | Callable read-only tool |
| `superbee_list_documents` | List the published document inventory with optional exact type and tag filters and an explicit complete or reader-facing presented scope, in canonical id order, with returned and total page counts. Presented scope follows the client present | Callable read-only tool |
| `superbee_list_views` | List the Views this artifact admits, with bounded metadata, access mode, entry identity, and returned and total page counts. View code is never executed. Read-only. | Callable read-only tool |
| `superbee_search_documents` | Rank documents against a query with optional exact type and tag filters and an explicit complete or reader-facing presented scope. Default auto matching tries every normalized term, then falls back to any meaningful term. Set match to all o | Callable read-only tool |

## 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 Superbee documentation changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on docs.getsuperbee.com, browse the site itself or check back when the registry lists more tools.
