4 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
get_page_facts, check_experience, list_case_studies, search_writing<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_page_facts" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_page_facts",
"description": "The structured facts of the page currently open — the same data behind its schema.org markup. Use this instead of reading the DOM.",
"inputSchema": {
"type": "object",
"properties": {}
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": true
}
}list_case_studies: declares no required list, so an agent cannot tell which parameters are mandatory; search_writing: 1 parameter has no description (query){
name: "list_case_studies",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));get_page_facts, check_experience, list_case_studies, search_writing<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_page_facts" tooldescription="...">
<!-- the same action, as UI -->
</form>