One tool registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
{ name: "sitesearch" /* short, unique, verb-based */ }siteSearch<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="sitesearch" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "siteSearch",
"description": "Search Profit Whisperers for pages related to a topic or phrase.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The words or phrase to search for on this website.",
"minLength": 2,
"maxLength": 120
},
"limit": {
"type": "integer",
"description": "Maximum number of results to return.",
"minimum": 1,
"maximum": 10,
"default": 5
},
"offset": {
"type": "integer",
"description": "Number of results to skip.",
"minimum": 0,
"default": 0
}
},
"required": [
"query"
],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true
}
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "sitesearch" /* short, unique, verb-based */ }siteSearch<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="sitesearch" tooldescription="...">
<!-- the same action, as UI -->
</form>