7 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
stalux_list_posts: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "stalux_list_posts",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}{ name: "stalux_list_posts" /* short, unique, verb-based */ }stalux_list_posts, stalux_get_post, stalux_current_post, stalux_random_post, stalux_search_posts<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="stalux_list_posts" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "stalux_list_posts",
"description": "Paginated list of all published posts, returning title, permanent link (abbrlink), date, categories, tags, description and post page URL. Use it to browse the whole blog or find a post's abbrlink; it does not return body content — use stalux_get_post for one post's metadata, or stalux_read_post for the full body. Prefer pageSize 50 to fetch everything in one call; out-of-range pages clamp to the last page (clamped flag).",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "integer",
"minimum": 1,
"default": 1,
"description": "Page number, starting at 1"
},
"pageSize": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 10,
"description": "Items per page, max 50"
}
},
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": false
}
}stalux_list_posts: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "stalux_list_posts",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}stalux_current_post: post, user{ name: "stalux_current_post", annotations: { untrustedContentHint: true } }document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "stalux_list_posts" /* short, unique, verb-based */ }stalux_list_posts, stalux_get_post, stalux_current_post, stalux_random_post, stalux_search_posts<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="stalux_list_posts" tooldescription="...">
<!-- the same action, as UI -->
</form>