2 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });fetch_blog_posts: 2 parameters have no description (limit, skip){
name: "fetch_blog_posts",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}fetch_blog_posts, fetch_page_markdown{
name: "fetch_blog_posts",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}fetch_blog_posts, fetch_page_markdown<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="fetch_blog_posts" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "fetch_blog_posts",
"description": "Load recent blog posts from this site’s public JSON API (`GET /api/blog-posts`).",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "number",
"minimum": 1,
"maximum": 24
},
"skip": {
"type": "number",
"minimum": 0
}
}
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });fetch_blog_posts: 2 parameters have no description (limit, skip){
name: "fetch_blog_posts",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}fetch_blog_posts, fetch_page_markdown{
name: "fetch_blog_posts",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));fetch_blog_posts, fetch_page_markdown<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="fetch_blog_posts" tooldescription="...">
<!-- the same action, as UI -->
</form>