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: [/* ... */] });check_cookie_compliance, check_gcm_v2, get_consentik_pricing{
name: "check_cookie_compliance",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}check_cookie_compliance, check_gcm_v2, get_consentik_pricing<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="check_cookie_compliance" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "check_cookie_compliance",
"description": "Scan a website URL for GDPR cookie compliance, cookie categories, and consent banner detection using Consentik",
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The website URL to scan for cookie compliance"
}
},
"required": [
"url"
]
},
"annotations": {}
}check_gcm_v2: registered at 2014.9000000953674ms// Register tools as soon as they're ready, not behind a deferred/async chunk.
document.modelContext.provideContext({ tools: [/* ... */] });// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });check_cookie_compliance, check_gcm_v2, get_consentik_pricing{
name: "check_cookie_compliance",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));check_cookie_compliance, check_gcm_v2, get_consentik_pricing<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="check_cookie_compliance" tooldescription="...">
<!-- the same action, as UI -->
</form>