Tools
The server registers 35 tools, grouped below by the entity they act on.
- Identity — 3 tools: who you are, your organizations, and an organization’s members.
- Projects — 6 tools: project CRUD plus sitemap import.
- Pages — 3 tools: pages within a project.
- Journeys — 4 tools: the user flows audits test.
- Journey groups — 6 tools: bundles of journeys, and running a bundle.
- Audits — 6 tools: starting, polling, cancelling, and reading cloud audits.
- Tickets — 4 tools: listing, reading, and moving agentic violation tickets.
- Findings — 1 tool: filing a finding your agent found.
- Glyph — 2 tools: glyph scans and generated descriptions.
Conventions
Section titled “Conventions”Identifiers. Arguments named *_id are opaque server ids, not slugs. organization_id comes
from list_organizations; project_id from list_projects; and so on down. get_organization is
the one tool keyed by slug.
Returns. Unless stated otherwise, a tool returns a single text content block holding
pretty-printed JSON. get_violation_screenshot returns an image block. Some write tools return a
one-line confirmation sentence instead of JSON; those are called out per tool.
Errors. A tool that cannot satisfy the request returns a text block with isError: true — a
“not found” for an id it cannot reach, or the underlying error message. An unauthenticated call
throws Not authenticated.
Authentication. Every tool here requires a signed-in person, except create_ticket — the one
tool a machine (b8e_) credential can reach. See
About authentication.
Pagination. first + after, forward only. See
Page through large results.