One tool registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });{ name: "scan_domain" /* short, unique, verb-based */ }scan_domain<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="scan_domain" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "scan_domain",
"description": "Run a free email-deliverability scan (SPF, DKIM, DMARC, MTA-STS, TLS-RPT, BIMI, DNS blocklists) for a domain and return a 0-100 score with per-check findings. Anonymous, no account required, rate-limited to 5 scans/hour per IP.",
"inputSchema": {
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain to scan, e.g. example.com (apex domain, no scheme or path)."
}
},
"required": [
"domain"
]
},
"annotations": {
"readOnlyHint": true,
"openWorldHint": true
}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "scan_domain" /* short, unique, verb-based */ }scan_domain<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="scan_domain" tooldescription="...">
<!-- the same action, as UI -->
</form>