6 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
{ name: "scan_images_c2pa" /* short, unique, verb-based */ }scan_images_c2pa, inspect_image_c2pa{
name: "scan_images_c2pa",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}scan_images_c2pa, inspect_image_c2pa, search_site, get_profile, list_content<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="scan_images_c2pa" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "scan_images_c2pa",
"description": "Scan every <img> on the current page for C2PA Content Credentials (content provenance metadata) and return a per-image summary: whether a manifest is present, the claim generator (the tool that produced or edited the image), the title, and the signer name. Use this to find which images on a page carry provenance data. Note: provenance is decoded but NOT cryptographically verified.",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 25,
"description": "Maximum number of images to fetch and scan (default 25, max 100)."
}
},
"required": []
},
"annotations": {}
}search_site, get_profile, list_content, get_note_markdown// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });search_site: 1 parameter has no description (limit); list_content: 1 parameter has no description (limit){
name: "search_site",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}scan_images_c2pa, inspect_image_c2pa{
name: "scan_images_c2pa",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}duplicate tool name registered: search_sitetry {
document.modelContext.provideContext({ tools: [/* ... */] });
} catch (err) {
console.error("WebMCP registration failed", err);
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "scan_images_c2pa" /* short, unique, verb-based */ }scan_images_c2pa, inspect_image_c2pa, search_site, get_profile, list_content<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="scan_images_c2pa" tooldescription="...">
<!-- the same action, as UI -->
</form>