3 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
list_supported_games: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "list_supported_games",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}list_supported_games, list_locations, search_knowledgebase<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="list_supported_games" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "list_supported_games",
"description": "List the games Nodecraft offers server hosting for. Returns each game's name, slug, public landing page URL (which includes pricing), minimum RAM in MB, and a `comingSoon` flag for unreleased titles. Useful for answering \"does Nodecraft host X?\" or recommending a game page.",
"inputSchema": {
"type": "object",
"properties": {
"includeComingSoon": {
"type": "boolean",
"description": "Include games that are announced but not yet available. Defaults to true.",
"default": true
}
}
},
"annotations": {
"readOnlyHint": true
}
}list_supported_games: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "list_supported_games",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));list_supported_games, list_locations, search_knowledgebase<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="list_supported_games" tooldescription="...">
<!-- the same action, as UI -->
</form>