6 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
open_llms_txt, open_api_catalog, navigate_to_path// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });{ name: "open_llms_txt" /* short, unique, verb-based */ }open_llms_txt, open_api_catalog, navigate_to_path, open_llms_txt, open_api_catalog{
name: "open_llms_txt",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}open_llms_txt, open_api_catalog, navigate_to_path, open_llms_txt, open_api_catalog<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="open_llms_txt" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "open_llms_txt",
"description": "Fetch V-Sum llms.txt (structured site summary for language models).",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"annotations": {}
}open_api_catalog: registered at 1203ms// Register tools as soon as they're ready, not behind a deferred/async chunk.
document.modelContext.provideContext({ tools: [/* ... */] });open_llms_txt, open_api_catalog, navigate_to_path// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });open_llms_txt, open_api_catalog, navigate_to_path, open_llms_txt, open_api_catalog{
name: "open_llms_txt",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}duplicate tool name registered: open_llms_txttry {
document.modelContext.provideContext({ tools: [/* ... */] });
} catch (err) {
console.error("WebMCP registration failed", err);
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "open_llms_txt" /* short, unique, verb-based */ }open_llms_txt, open_api_catalog, navigate_to_path, open_llms_txt, open_api_catalog<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="open_llms_txt" tooldescription="...">
<!-- the same action, as UI -->
</form>