10 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
blog_list_posts: declares no required list, so an agent cannot tell which parameters are mandatory; blog_get_post: declares no required list, so an agent cannot tell which parameters are mandatory; bl{
name: "blog_list_posts",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}{ name: "blog_list_posts" /* short, unique, verb-based */ }blog_list_posts, blog_get_post, blog_search_posts, blog_grep_posts, blog_read_post<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="blog_list_posts" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "blog_list_posts",
"description": "按发布时间倒序分页列出 Mayx 博客的全部文章,返回序号、标题、日期、链接、分类、标签与摘要。需要浏览全站内容或确认某篇文章序号时使用;不返回正文,正文请用 blog_read_post。",
"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
}
}blog_list_posts: declares no required list, so an agent cannot tell which parameters are mandatory; blog_get_post: declares no required list, so an agent cannot tell which parameters are mandatory; bl{
name: "blog_list_posts",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "blog_list_posts" /* short, unique, verb-based */ }blog_list_posts, blog_get_post, blog_search_posts, blog_grep_posts, blog_read_post<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="blog_list_posts" tooldescription="...">
<!-- the same action, as UI -->
</form>