5 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: [/* ... */] });{ name: "navigate_to_page" /* short, unique, verb-based */ }navigate_to_page, search_docs, list_sdks, contact_sales, get_api_references{
name: "navigate_to_page",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}navigate_to_page, search_docs, list_sdks, contact_sales, get_api_references<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="navigate_to_page" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "navigate_to_page",
"description": "Navigate the browser to a page on openfort.io. Use this to move the user to a relevant section of the site.",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "string",
"enum": [
"home",
"pricing",
"embedded-wallet",
"wallet-as-a-service",
"account-abstraction",
"authentication",
"wallet-automations",
"security",
"customers",
"blog",
"changelog",
"benchmarks",
"compare",
"docs"
],
"description": "Short key for a known page."
}
},
"required": [
"page"
]
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });search_docs: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "search_docs",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}navigate_to_page, search_docs, list_sdks, contact_sales, get_api_references{
name: "navigate_to_page",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "navigate_to_page" /* short, unique, verb-based */ }navigate_to_page, search_docs, list_sdks, contact_sales, get_api_references<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="navigate_to_page" tooldescription="...">
<!-- the same action, as UI -->
</form>