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": "分页列出博客的全部已发布文章,返回标题、永久链接(abbrlink)、日期、分类、标签、摘要与文章页 URL。需要浏览全站文章、确认某篇文章的 abbrlink 时使用;不返回正文,只要某篇元信息用 stalux_get_post,读正文请用 stalux_read_post。pageSize 建议设 50 一次拿完,减少翻页;页码越界时会自动返回最后一页(clamped 标记)。",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "integer",
"minimum": 1,
"default": 1,
"description": "页码,从 1 开始"
},
"pageSize": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 10,
"description": "每页条数,最大 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"]
}
}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>