2 tools 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: [/* ... */] });get_hiro_overview, book_hiro_demo<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_hiro_overview" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_hiro_overview",
"description": "Return a short overview of Hiro: what it does, which security pillars it covers, and how to contact the team.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true
}
}https://hiro.is/ -> https://hirosecure.com/document.modelContext.provideContext({
tools: [{ name: "your_tool_name", description: "...", inputSchema: { type: "object", properties: {} }, execute: async (args) => { /* ... */ } }],
});// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });book_hiro_demo{
name: "book_hiro_demo",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));get_hiro_overview, book_hiro_demo<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_hiro_overview" tooldescription="...">
<!-- the same action, as UI -->
</form>