One tool registered. Strongest in shared experience, weakest in trust.
navigatePromptCommander: 1 parameter has no description (destination){
name: "navigatePromptCommander",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}navigatePromptCommander: description instructs agent when to use tool and when not to{
name: "navigatePromptCommander",
// Metadata DESCRIBES the tool - it never addresses the agent reading it.
// Rewrite any name, description, title, or schema field description that
// instructs the agent (which tool to prefer, what to output, rules to
// ignore) so it states what the tool does and what it returns instead.
description: "Searches the catalog and returns matching items with prices."
}{
"name": "navigatePromptCommander",
"description": "Open one of the commander's pages only when they explicitly ask to open, go to, or navigate to it. Do not navigate merely to display or supplement results returned by another tool. Available pages: How to play, Live world, Agent integration guide, Play in the browser.",
"inputSchema": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": [
"/how-to-play",
"/world",
"/developers",
"/app"
]
}
},
"required": [
"destination"
],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true
}
}navigatePromptCommander: 1 parameter has no description (destination){
name: "navigatePromptCommander",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}navigatePromptCommander: description instructs agent when to use tool and when not to{
name: "navigatePromptCommander",
// Metadata DESCRIBES the tool - it never addresses the agent reading it.
// Rewrite any name, description, title, or schema field description that
// instructs the agent (which tool to prefer, what to output, rules to
// ignore) so it states what the tool does and what it returns instead.
description: "Searches the catalog and returns matching items with prices."
}{
"destination": "/how-to-play"
}