3 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });{ name: "scan_site" /* short, unique, verb-based */ }scan_site, get_scan, ask{
name: "scan_site",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}scan_site, get_scan, ask<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="scan_site" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "scan_site",
"description": "Scan a public website for AI agent-readability against the Vercel Agent Readability Spec, llmstxt.org, and agent-protocol manifests. Returns a 0–100 score, the llms.txt score, and the top failing checks with a link to the full per-check report.",
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The public URL to scan, e.g. https://example.com"
}
},
"required": [
"url"
],
"additionalProperties": false
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });scan_site, get_scan, ask{
name: "scan_site",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "scan_site" /* short, unique, verb-based */ }scan_site, get_scan, ask<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="scan_site" tooldescription="...">
<!-- the same action, as UI -->
</form>