6 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
describe_site, get_recent_writing, search_content, set_appearance, sign_guestbook{
name: "describe_site",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}describe_site, get_recent_writing, search_content, set_appearance, sign_guestbook<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="describe_site" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "describe_site",
"description": "Describe mattpyle.com: who the author is, what the site is, and which sections it has. Call this first for context about the site you're on.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"annotations": {}
}get_recent_writing: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "get_recent_writing",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}describe_site, get_recent_writing, search_content, set_appearance, sign_guestbook{
name: "describe_site",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "sign_guestbook" /* short, unique, verb-based */ }describe_site, get_recent_writing, search_content, set_appearance, sign_guestbook<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="describe_site" tooldescription="...">
<!-- the same action, as UI -->
</form>