3 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });get_started, search_templates, convert_document{
name: "get_started",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}get_started, search_templates, convert_document<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_started" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_started",
"description": "Get the links and steps to convert a document (PDF, Word, Google Doc, image) into a form with Formswrite.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });convert_document: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "convert_document",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}get_started, search_templates, convert_document{
name: "get_started",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "convert_document" /* short, unique, verb-based */ }get_started, search_templates, convert_document<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_started" tooldescription="...">
<!-- the same action, as UI -->
</form>