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: [/* ... */] });{ name: "navigate" /* short, unique, verb-based */ }navigate{
name: "navigate",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}navigate, get-pricing, get-install-command<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="navigate" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "navigate",
"description": "Navigate the current tab to a named section of moss.dev. Use this to take the user to pricing, the blog, or to external docs.",
"inputSchema": {
"type": "object",
"properties": {
"section": {
"type": "string",
"enum": [
"home",
"pricing",
"blog",
"docs",
"portal"
],
"description": "home = /, pricing = /pricing, blog = /blog, docs = https://docs.moss.dev, portal = https://portal.usemoss.dev"
}
},
"required": [
"section"
]
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });get-install-command: 1 parameter has no description (language){
name: "get-install-command",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}navigate{
name: "navigate",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "navigate" /* short, unique, verb-based */ }navigate, get-pricing, get-install-command<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="navigate" tooldescription="...">
<!-- the same action, as UI -->
</form>