2 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
search_xquik_api: 2 parameters have no description (query, maxResults){
name: "search_xquik_api",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}search_xquik_api<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_xquik_api" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_xquik_api",
"description": "Search Xquik's current OpenAPI contract. Returns matching methods, paths, inputs, and response statuses without calling the API.",
"inputSchema": {
"type": "object",
"additionalProperties": false,
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 500
},
"maxResults": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 20
}
}
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": false
}
}search_xquik_api: 2 parameters have no description (query, maxResults){
name: "search_xquik_api",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "open_xquik_tool_search" /* short, unique, verb-based */ }search_xquik_api<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_xquik_api" tooldescription="...">
<!-- the same action, as UI -->
</form>