5 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
{ name: "navigate_to" /* short, unique, verb-based */ }navigate_to{
name: "navigate_to",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}navigate_to, get_site_pages, get_page_context, search_blog, list_changelog<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="navigate_to" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "navigate_to",
"description": "Navigate the browser to a key Latitude page such as pricing, blog, changelog, documentation, signup, or book-demo.",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "string",
"enum": [
"home",
"pricing",
"blog",
"changelog",
"about",
"privacy",
"terms",
"book-demo",
"signup",
"docs",
"github"
],
"description": "Destination page key."
}
},
"required": [
"page"
]
},
"annotations": {}
}list_changelog: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "list_changelog",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}navigate_to{
name: "navigate_to",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "navigate_to" /* short, unique, verb-based */ }navigate_to, get_site_pages, get_page_context, search_blog, list_changelog<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="navigate_to" tooldescription="...">
<!-- the same action, as UI -->
</form>