One tool registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
get_friendly_guid: registered at 1079ms// 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: [/* ... */] });get_friendly_guid: 1 parameter description is over Chrome's 150-character guidance{
name: "get_friendly_guid",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}get_friendly_guid<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_friendly_guid" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_friendly_guid",
"description": "Get a FriendlyGUID. Optionally provide a memorable seed word or phrase; FriendlyGUID converts it to a valid GUID/UUID and can update the page.",
"inputSchema": {
"type": "object",
"properties": {
"seed": {
"type": "string",
"description": "Optional memorable word or phrase to convert into a friendly GUID. When omitted, the current page GUID is completed or a new friendly GUID is generated."
},
"uppercase": {
"type": "boolean",
"description": "Return the GUID in uppercase. Defaults to the page casing setting."
},
"updatePage": {
"type": "boolean",
"description": "Update the visible FriendlyGUID input with the generated GUID.",
"default": true
}
},
"required": [],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": false
}
}get_friendly_guid: registered at 1079ms// 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: [/* ... */] });get_friendly_guid: 1 parameter description is over Chrome's 150-character guidance{
name: "get_friendly_guid",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));get_friendly_guid<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_friendly_guid" tooldescription="...">
<!-- the same action, as UI -->
</form>